Method | Description | |
---|---|---|
BinaryReader ( Stream input ) : System.Text | ||
BinaryReader ( Stream input, |
||
BinaryReader ( Stream input, |
||
Close ( ) : void | Override Dispose(bool) instead of Close(). This API exists for compatibility purposes. | |
Dispose ( ) : void | ||
PeekChar ( ) : int | ||
Read ( ) : int | ||
Read ( byte buffer, int index, int count ) : int | ||
Read ( char buffer, int index, int count ) : int | ||
ReadBoolean ( ) : bool | ||
ReadByte ( ) : byte | ||
ReadBytes ( int count ) : byte[] | ||
ReadChar ( ) : char | ||
ReadChars ( int count ) : char[] | ||
ReadDecimal ( ) : decimal | ||
ReadDouble ( ) : double | ||
ReadInt16 ( ) : short | ||
ReadInt32 ( ) : int | ||
ReadInt64 ( ) : long | ||
ReadSingle ( ) : float | ||
ReadString ( ) : string |
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void | ||
FillBuffer ( int numBytes ) : void | ||
Read7BitEncodedInt ( ) : int |
Method | Description | |
---|---|---|
InternalReadChars ( char buffer, int index, int count ) : int | ||
InternalReadOneChar ( ) : int | ||
ReadSByte ( ) : sbyte | ||
ReadUInt16 ( ) : ushort | ||
ReadUInt32 ( ) : uint | ||
ReadUInt64 ( ) : ulong |
public BinaryReader ( Stream input ) : System.Text | ||
input | Stream | |
return | System.Text |
public BinaryReader ( Stream input, |
||
input | Stream | |
encoding | ||
return | System.Text |
public BinaryReader ( Stream input, |
||
input | Stream | |
encoding | ||
leaveOpen | bool | |
return | System.Text |
public Read ( byte buffer, int index, int count ) : int | ||
buffer | byte | |
index | int | |
count | int | |
return | int |
public Read ( char buffer, int index, int count ) : int | ||
buffer | char | |
index | int | |
count | int | |
return | int |