Method | Description | |
---|---|---|
Equals ( |
||
Equals ( object obj ) : bool | ||
GetHashCode ( ) : int | ||
SerializedPropertyInfo ( string serializedValue, bool isString ) : Newtonsoft.Json.Linq |
Initializes a new instance of the SerializedPropertyInfo class. This representation allows properties to be read from JSON into memory and then round-tripped back to JSON, without storing "live" Json.NET objects. Live JSON objects hold references to their parent container, which would consume a lot of memory for objects that are part of a large JSON file. |
public Equals ( |
||
other | ||
return | bool |
public SerializedPropertyInfo ( string serializedValue, bool isString ) : Newtonsoft.Json.Linq | ||
serializedValue | string | /// The string representation of the JSON value of the property. /// |
isString | bool |
/// true if the property is a string; otherwise false .
/// |
return | Newtonsoft.Json.Linq |