EAPConvertTagStringToMap Method (String, Char) |
Convert a tag string (name=value pairs) to a string map mapping name to value.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static StringMap TagStringToMap(
string tags,
char delim
)
Public Shared Function TagStringToMap (
tags As String,
delim As Char
) As StringMap
Parameters
- tags
- Type: SystemString
The tag string to convert. - delim
- Type: SystemChar
The delimiter to expect between an individual name and its value.
Return Value
Type:
StringMapA map of names to values if tag string is non-empty. If no tags are found an empty collection is returned.
See Also