JsonPathInfoResolvePlaceholderValuesFromPath Method
Extracts placeholder values from a "real" path.
Namespace: MFiles.VAF.Configuration.JsonMappingAssembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
public Dictionary<int, Dictionary<string, string>> ResolvePlaceholderValuesFromPath(
string path
)
- path String
- The "real" path to extract placeholder values from.
DictionaryInt32,
DictionaryString,
StringPlaceholder values indexed by placeholder and segment index.
If the current instances path is foo.bar.<key>.value, and the real path
passed is foo.bar.x.value. Then this method would return the value x indexed at
2 (segment index) and "key" (placeholder name) respectively.
retVal[ 2 ][ "key" ] = "x";