Java.IO.DataOutputStream Members

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

See Also: Inherited members from Java.IO.FilterOutputStream

Public Constructors

Constructs a new DataOutputStream on the OutputStreamout.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

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.
Writtenint. The number of bytes written out so far.

Public Methods

Size() : int
Returns the total number of bytes written to the target stream so far.
WriteBoolean(bool)
Writes a boolean to the target stream.
WriteByte(int)
Writes an 8-bit byte to the target stream.
WriteBytes(string)
Writes the low order 8-bit bytes from the specified string.
WriteChar(int)
Writes the specified 16-bit character in big-endian order.
WriteChars(string)
Writes the 16-bit characters contained in str in big-endian order.
WriteDouble(double)
Writes the specified 64-bit double in big-endian order.
WriteFloat(float)
Writes the specified 32-bit float in big-endian order.
WriteInt(int)
Writes the specified 32-bit int in big-endian order.
WriteLong(long)
Writes the specified 64-bit long in big-endian order.
WriteShort(int)
Writes the specified 16-bit short in big-endian order.
WriteUTF(string)
Writes the specified string encoded in Java.IO.IDataInput.