Property | Type | Description | |
---|---|---|---|
OutStream | Stream |
Method | Description | |
---|---|---|
BigEndianWriter ( Stream output ) : System |
Initializes a new instance of the System.IO.BinaryWriter class based on the supplied stream and using UTF-8 as the encoding for strings.
|
|
Close ( ) : void |
Closes the current System.IO.BinaryWriter and the underlying stream.
|
|
Flush ( ) : void | ||
Seek ( int offset, SeekOrigin origin ) : long |
Not supported
|
|
Write ( System.Guid uuid_head ) : void | ||
Write ( bool value ) : void |
Writes a BYTE (0 or 1) value
|
|
Write ( byte value ) : void | ||
Write ( byte buffer, int index, int count ) : void |
Write a byte buffer. Current order is preserved (no endian-swap)
|
|
Write ( char ch ) : void | ||
Write ( char chars, int index, int count ) : void | ||
Write ( decimal value ) : void | ||
Write ( double value ) : void | ||
Write ( float value ) : void | ||
Write ( int value ) : void | ||
Write ( long value ) : void | ||
Write ( sbyte value ) : void | ||
Write ( short value ) : void | ||
Write ( string value ) : void |
Not Supported
|
|
Write ( uint value ) : void | ||
Write ( ulong value ) : void | ||
Write ( ushort value ) : void | ||
WriteForward ( byte data ) : void |
Write the given byte array in 0..n order
|
|
WriteReverse ( byte data ) : void |
Write the given byte array in 0..n (reverse) order
|
Method | Description | |
---|---|---|
BigEndianWriter ( ) : System |
Initializes a new instance of the System.IO.BinaryWriter class that writesto a stream.
|
|
Write7BitEncodedInt ( int value ) : void |
Not supported
|
public BigEndianWriter ( Stream output ) : System | ||
output | Stream | The output stream |
return | System |
public Seek ( int offset, SeekOrigin origin ) : long | ||
offset | int | |
origin | SeekOrigin | |
return | long |
public Write ( System.Guid uuid_head ) : void | ||
uuid_head | System.Guid | |
return | void |
public Write ( byte buffer, int index, int count ) : void | ||
buffer | byte | |
index | int | |
count | int | |
return | void |
public Write ( char chars, int index, int count ) : void | ||
chars | char | |
index | int | |
count | int | |
return | void |
protected Write7BitEncodedInt ( int value ) : void | ||
value | int | |
return | void |