JsonPathInfoResolveSegmentPlaceholderValues Method

Resolves placeholder values from a real path segment given a template segment.

Definition

Namespace: MFiles.VAF.Configuration.JsonMapping
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public static Dictionary<string, string> ResolveSegmentPlaceholderValues(
	string templateSegment,
	string realSegment,
	string[] placeholders = null
)

Parameters

templateSegment  String
The defined (template) path segment to get values for.
realSegment  String
The "real" path segment that will contain the placeholder values.
placeholders  String  (Optional)
Optional. The list of placeholders defined in the template segment. If not passed, they will be calculated.

Return Value

DictionaryString, String
Placeholder values indexed by placeholder name.

See Also