Method | Description | |
---|---|---|
BigEndianBinaryReader ( Stream input ) : System |
Initialise the reader.
|
|
BigEndianBinaryReader ( Stream input, |
Initialise the reader.
|
|
Create ( ByteOrder byteOrder, Stream input ) : |
Create a BinaryReader or a BigEndianBinaryReader based upon a ByteOrder.
|
|
ReadChar ( ) : char |
Read a single character in the encoding specified when creating the reader.
|
|
ReadChars ( int count ) : char[] |
Read a set of characters.
|
|
ReadDecimal ( ) : decimal |
Read a decimal value.
|
|
ReadDouble ( ) : double |
Read a Double value in big-endian order.
|
|
ReadInt16 ( ) : short |
Read a Int16 value in big-endian order.
|
|
ReadInt32 ( ) : int |
Read a Int32 value in big-endian order.
|
|
ReadInt64 ( ) : long |
Read a Int64 value in big-endian order.
|
|
ReadSingle ( ) : float |
Read a Single value in big-endian order.
|
|
ReadString ( ) : string |
Read a string that's stored as a 7-bit coded length followed by string data in the encoding specified when creating the reader.
|
|
ReadUInt16 ( ) : ushort |
Read a UInt16 value in big-endian order.
|
|
ReadUInt32 ( ) : uint |
Read a UInt32 value in big-endian order.
|
|
ReadUInt64 ( ) : ulong |
Read a UInt64 value in big-endian order.
|
public BigEndianBinaryReader ( Stream input ) : System | ||
input | Stream | |
return | System |
public BigEndianBinaryReader ( Stream input, |
||
input | Stream | |
encoding | ||
return | System |
public static Create ( ByteOrder byteOrder, Stream input ) : |
||
byteOrder | ByteOrder | |
input | Stream | |
return |