C# Class BinaryReaderBigEndian, msgpack

Inheritance: IDisposable
ファイルを表示 Open project: slavat/msgpack Class Usage Examples

Public Methods

Method Description
BinaryReaderBigEndian ( Stream input ) : System
Close ( ) : void
Dispose ( ) : void
Read ( byte buf, int index, int count ) : int
ReadByte ( ) : byte
ReadBytes ( int count ) : byte[]
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSByte ( ) : sbyte
ReadSingle ( ) : float
ReadUInt16 ( ) : ushort
ReadUInt32 ( ) : uint
ReadUInt64 ( ) : ulong

Protected Methods

Method Description
Dispose ( bool disposing ) : void
FillBuffer ( int numBytes ) : void

Private Methods

Method Description
ThrowEndOfStream ( ) : void
ThrowFileNotOpen ( ) : void

Method Details

BinaryReaderBigEndian() public method

public BinaryReaderBigEndian ( Stream input ) : System
input Stream
return System

Close() public method

public Close ( ) : void
return void

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

FillBuffer() protected method

protected FillBuffer ( int numBytes ) : void
numBytes int
return void

Read() public method

public Read ( byte buf, int index, int count ) : int
buf byte
index int
count int
return int

ReadByte() public method

public ReadByte ( ) : byte
return byte

ReadBytes() public method

public ReadBytes ( int count ) : byte[]
count int
return byte[]

ReadDouble() public method

public ReadDouble ( ) : double
return double

ReadInt16() public method

public ReadInt16 ( ) : short
return short

ReadInt32() public method

public ReadInt32 ( ) : int
return int

ReadInt64() public method

public ReadInt64 ( ) : long
return long

ReadSByte() public method

public ReadSByte ( ) : sbyte
return sbyte

ReadSingle() public method

public ReadSingle ( ) : float
return float

ReadUInt16() public method

public ReadUInt16 ( ) : ushort
return ushort

ReadUInt32() public method

public ReadUInt32 ( ) : uint
return uint

ReadUInt64() public method

public ReadUInt64 ( ) : ulong
return ulong