Android.Util.JsonReader: Method Members

The methods of Android.Util.JsonReader are listed below. For a list of all members, see the JsonReader Members list.

See Also: Inherited members from Java.Lang.Object

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.