Android.Util.JsonWriter Members

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

See Also: Inherited members from Java.Lang.Object

Public Constructors

Creates a new instance that writes a JSON-encoded stream to out.

Public Properties

Lenientbool. Returns true if this writer has relaxed syntax rules.

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() : JsonWriter
Begins encoding a new array.
BeginArrayAsync() : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
BeginObject() : JsonWriter
Begins encoding a new object.
BeginObjectAsync() : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
Close()
Flushes and closes this writer and the underlying Java.IO.Writer.
EndArray() : JsonWriter
Ends encoding the current array.
EndArrayAsync() : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
EndObject() : JsonWriter
Ends encoding the current object.
EndObjectAsync() : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
Flush()
Ensures all buffered data is written to the underlying Java.IO.Writer and flushes that writer.
FlushAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
Name(string) : JsonWriter
Encodes the property name.
NameAsync(string) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
NullValue() : JsonWriter
Encodes null.
NullValueAsync() : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
SetIndent(string)
Sets the indentation string to be repeated for each level of indentation in the encoded document.
Value(Java.Lang.Number) : JsonWriter
Encodes value.
Value(bool) : JsonWriter
Encodes value.
Value(double) : JsonWriter
Encodes value.
Value(long) : JsonWriter
Encodes value.
Value(string) : JsonWriter
Encodes value.
ValueAsync(Java.Lang.Number) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
ValueAsync(bool) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
ValueAsync(double) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
ValueAsync(long) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.
ValueAsync(string) : System.Threading.Tasks.Task<JsonWriter>
Documentation for this section has not yet been entered.