Click or drag to resize

CodeAssemblyClassBaseParseConfiguration Method

Returns a configuration dictionary by parsing a string with key/value pairs.

Namespace:  Omada.OE.Model
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public Dictionary<string, string> ParseConfiguration(
	string parameterValuePairs
)

Parameters

parameterValuePairs
Type: SystemString
Must be a semicolon delimited list of keys and values. Keys are case-insensitive, eg. "aaa" and "AAA" are considered to be the same key. Keys and values must be separated by '='. Example: "param1=value1;param2=value2". No encoding is supported - so keys and values can't contain the letters ';' and '='. If a key appears more than once in the string the value of the last occurence is used. Keys and values are trimmed of spaces. Can be null.

Return Value

Type: DictionaryString, String
Returns a configuration dictionary with the parameters and values.
See Also