Android.Util.JsonReader Members

The members of Android.Util.JsonReader are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Creates a new instance that reads a JSON-encoded stream from in.

Public Properties

[read-only]
HasNextbool. Returns true if the current array or object has another element.
Lenientbool. Returns true if this parser is liberal in what it accepts.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

BeginArray()
Consumes the next token from the JSON stream and asserts that it is the beginning of a new array.
BeginArrayAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
BeginObject()
Consumes the next token from the JSON stream and asserts that it is the beginning of a new object.
BeginObjectAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
Close()
Closes this JSON reader and the underlying Java.IO.Reader.
EndArray()
Consumes the next token from the JSON stream and asserts that it is the end of the current array.
EndArrayAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
EndObject()
Consumes the next token from the JSON stream and asserts that it is the end of the current array.
EndObjectAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
NextBoolean() : bool
Returns the JsonToken.Boolean value of the next token, consuming it.
NextBooleanAsync() : System.Threading.Tasks.Task<bool>
Documentation for this section has not yet been entered.
NextDouble() : double
Returns the JsonToken.Number value of the next token, consuming it.
NextDoubleAsync() : System.Threading.Tasks.Task<double>
Documentation for this section has not yet been entered.
NextInt() : int
Returns the JsonToken.Number value of the next token, consuming it.
NextIntAsync() : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
NextLong() : long
Returns the JsonToken.Number value of the next token, consuming it.
NextLongAsync() : System.Threading.Tasks.Task<long>
Documentation for this section has not yet been entered.
NextName() : string
Returns the next token, a JsonToken.Name, and consumes it.
NextNameAsync() : System.Threading.Tasks.Task<string>
Documentation for this section has not yet been entered.
NextNull()
Consumes the next token from the JSON stream and asserts that it is a literal null.
NextNullAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
NextString() : string
Returns the JsonToken.String value of the next token, consuming it.
NextStringAsync() : System.Threading.Tasks.Task<string>
Documentation for this section has not yet been entered.
Peek() : JsonToken
Returns the type of the next token without consuming it.
PeekAsync() : System.Threading.Tasks.Task<JsonToken>
Documentation for this section has not yet been entered.
SkipValue()
Skips the next value recursively.
SkipValueAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.