Method | Description | |
---|---|---|
Create ( |
Creates a new JsonSerializer instance using the specified JsonSerializerSettings.
|
|
Deserialize ( |
Deserializes the Json structure contained by the specified JsonReader.
|
|
Deserialize ( |
Deserializes the Json structure contained by the specified JsonReader into an instance of the specified type.
|
|
Deserialize ( TextReader reader, Type objectType ) : object |
Deserializes the Json structure contained by the specified StringReader into an instance of the specified type.
|
|
Deserialize ( |
Deserializes the Json structure contained by the specified JsonReader into an instance of the specified type.
|
|
JsonSerializer ( ) : System |
Initializes a new instance of the JsonSerializer class.
|
|
Populate ( JsonReader reader, object target ) : void |
Populates the JSON values onto the target object.
|
|
Populate ( TextReader reader, object target ) : void |
Populates the JSON values onto the target object.
|
|
Serialize ( JsonWriter jsonWriter, object value ) : void |
Serializes the specified Object and writes the Json structure to a
|
|
Serialize ( TextWriter textWriter, object value ) : void |
Serializes the specified Object and writes the Json structure to a
|
Method | Description | |
---|---|---|
DeserializeInternal ( |
||
GetMatchingConverter ( IList converters, Type objectType ) : |
||
GetMatchingConverter ( Type type ) : |
||
OnError ( |
||
PopulateInternal ( JsonReader reader, object target ) : void | ||
SerializeInternal ( JsonWriter jsonWriter, object value ) : void |
public static Create ( |
||
settings | The settings to be applied to the |
|
return |
public Deserialize ( |
||
reader | The |
|
return | object |
public Deserialize ( |
||
reader | The |
|
objectType | Type | The |
return | object |
public Deserialize ( TextReader reader, Type objectType ) : object | ||
reader | TextReader | The |
objectType | Type | The |
return | object |
public Deserialize ( |
||
reader | The |
|
return | T |
public Populate ( JsonReader reader, object target ) : void | ||
reader | JsonReader | The |
target | object | The target object to populate values onto. |
return | void |
public Populate ( TextReader reader, object target ) : void | ||
reader | TextReader | The |
target | object | The target object to populate values onto. |
return | void |
public Serialize ( JsonWriter jsonWriter, object value ) : void | ||
jsonWriter | JsonWriter | The |
value | object | The |
return | void |
public Serialize ( TextWriter textWriter, object value ) : void | ||
textWriter | TextWriter | The |
value | object | The |
return | void |