Maps all values referenced by a specific mapping a source
JSON structure into a target JSON structure.
Namespace:
MFiles.VAF.Configuration.JsonMapping
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic void MapValues(
JObject source,
JObject target,
JsonValueMapping mapping
)
Public Sub MapValues (
source As JObject,
target As JObject,
mapping As JsonValueMapping
)
public:
void MapValues(
JObject^ source,
JObject^ target,
JsonValueMapping^ mapping
)
Parameters
- source
- Type: JObject
The source JSON structure to map values from. - target
- Type: JObject
The target JSON structure to map values from the source to. - mapping
- Type: MFiles.VAF.Configuration.JsonMappingJsonValueMapping
The mapping that defines the value(s) to map.
See Also