Class JsonReaderParser
Provides access to factory methods for creating JsonReaderParser<T> instances.
Inheritance
System.Object
JsonReaderParser
Namespace: Cuemon.Serialization.Json
Assembly: Cuemon.Serialization.Json.dll
Syntax
public static class JsonReaderParser : object
Methods
| Improve this DocCreate<T>(T, JsonReader)
Creates a new JsonReaderParser<T> instance.
Declaration
public static JsonReaderParser<T> Create<T>(T instance, JsonReader reader)
Parameters
Type | Name | Description |
---|---|---|
T | instance | An initialized instance of |
JsonReader | reader | The |
Returns
Type | Description |
---|---|
JsonReaderParser<T> | A new instance of JsonReaderParser<T>. |
Type Parameters
Name | Description |
---|---|
T | The type of the object to apply a JSON document. |