Class JsonParser
Main class for parsing json strings.
Inheritance
System.Object
JsonParser
Namespace: MySqlX.Serialization
Assembly: MySql.Data.dll
Version: 9.2.0
Syntax
public class JsonParser
Constructors
JsonParser()
Initializes a new instance of the JsonParser class.
Declaration
public JsonParser()
Methods
Parse(String)
Parses the received string into a dictionary.
Declaration
public static Dictionary<string, object> Parse(string s)
Parameters
Type | Name | Description |
---|---|---|
System. |
s | The string to parse. |
Returns
Type | Description |
---|---|
System. |
A System.Collections.Generic.Dictionary<TKey, TValue> object that represents the parsed string. |