Property | Type | Description | |
---|---|---|---|
TryPopBufferedMember |
Method | Description | |
---|---|---|
FreeJsonMemberReadingHelper ( Jayrock.Json.JsonReader reader ) : System | ||
GetTailReader ( ) : Jayrock.Json.JsonReader |
Gets a reader than can be used to read remaining members, which could include buffered and non-buffered members.
|
|
ReadMember ( string name ) : Jayrock.Json.JsonReader |
Reads a member with a given (case-sensitive) name and returns a JsonReader that can be used to read the value. Otherwise it throws an exception. The caller should not use the returned JsonReader instance for any other purpose but reading the value. It is possible that this method will return the same instance as BaseReader or a separate instance. |
|
ToString ( ) : string |
Returns the same string returned by the JsonReader.ToString implementation of BaseReader.
|
|
TryReadMember ( string name ) : Jayrock.Json.JsonReader |
Attempts to locate a member with a given (case-sensitive) name and returns a JsonReader that can be used to read the value. Otherwise it returns The caller should not use the returned JsonReader instance for any other purpose but reading the value. It is possible that this method will return the same instance as BaseReader or a separate instance. |
Method | Description | |
---|---|---|
TryPopBufferedMember ( string name ) : |
public FreeJsonMemberReadingHelper ( Jayrock.Json.JsonReader reader ) : System | ||
reader | Jayrock.Json.JsonReader | |
return | System |
public GetTailReader ( ) : Jayrock.Json.JsonReader | ||
return | Jayrock.Json.JsonReader |
public ReadMember ( string name ) : Jayrock.Json.JsonReader | ||
name | string | |
return | Jayrock.Json.JsonReader |
public TryReadMember ( string name ) : Jayrock.Json.JsonReader | ||
name | string | |
return | Jayrock.Json.JsonReader |