FilterOutputStream.Write(Int32) Method

Definition

Writes the specified byte to this output stream.

[Android.Runtime.Register("write", "(I)V", "GetWrite_IHandler")]
public override void Write (int b);
[<Android.Runtime.Register("write", "(I)V", "GetWrite_IHandler")>]
override this.Write : int -> unit

Parameters

b
Int32

the byte.

Attributes

Exceptions

if an I/O error occurs while writing to this stream.

Remarks

Writes the specified byte to this output stream.

The write method of FilterOutputStream calls the write method of its underlying output stream, that is, it performs out.write(b).

Implements the abstract write method of OutputStream.

Java documentation for java.io.FilterOutputStream.write(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to