C# Class CSJ2K.Util.EndianBinaryReader

Inheritance: System.IO.BinaryReader
Show file Open project: cureos/csj2k

Public Methods

Method Description
EndianBinaryReader ( Stream input ) : System
EndianBinaryReader ( Stream input, Encoding encoding ) : System
EndianBinaryReader ( Stream input, Encoding encoding, bool bigEndian ) : System
EndianBinaryReader ( Stream input, bool bigEndian ) : System
ReadDecimal ( ) : decimal
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSingle ( ) : float
ReadUInt16 ( ) : ushort
ReadUInt32 ( ) : uint
ReadUInt64 ( ) : ulong

Method Details

EndianBinaryReader() public method

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

EndianBinaryReader() public method

public EndianBinaryReader ( Stream input, Encoding encoding ) : System
input Stream
encoding System.Text.Encoding
return System

EndianBinaryReader() public method

public EndianBinaryReader ( Stream input, Encoding encoding, bool bigEndian ) : System
input Stream
encoding System.Text.Encoding
bigEndian bool
return System

EndianBinaryReader() public method

public EndianBinaryReader ( Stream input, bool bigEndian ) : System
input Stream
bigEndian bool
return System

ReadDecimal() public method

public ReadDecimal ( ) : decimal
return decimal

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

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