Java.IO.Writer Members

The members of Java.IO.Writer are listed below.

See Also: Inherited members from Java.Lang.Object

Protected Constructors

Constructs a new Writer with this as the object used to synchronize critical sections.
Constructs a new Writer with lock used to synchronize critical sections.
A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

LockJava.Lang.Object. The object used to synchronize access to the writer.
[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

Append(Java.Lang.ICharSequence) : Java.Lang.IAppendable
Appends the character sequence csq to the target.
Append(char) : Java.Lang.IAppendable
Appends the character c to the target.
Append(string) : Java.Lang.IAppendable
Documentation for this section has not yet been entered.
Append(Java.Lang.ICharSequence, int, int) : Java.Lang.IAppendable
Appends a subsequence of the character sequence csq to the target.
Append(string, int, int) : Java.Lang.IAppendable
Documentation for this section has not yet been entered.
AppendAsync(Java.Lang.ICharSequence) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
AppendAsync(char) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
AppendAsync(Java.Lang.ICharSequence, int, int) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
abstract
Close()
Closes this writer.
abstract
Flush()
Flushes this writer.
Write(char[])
Writes the entire character buffer buf to the target.
Write(int)
Writes one character to the target.
Write(string)
Writes the characters from the specified string to the target.
abstract
Write(char[], int, int)
Writes count characters starting at offset in buf to the target.
Write(string, int, int)
Writes count characters from str starting at offset to the target.
WriteAsync(char[]) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(string) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(char[], int, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(string, int, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.