C# Class Tempest.StreamValueReader

Inheritance: IValueReader
Mostrar archivo Open project: ermau/Tempest Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
ReadBool ( ) : bool
ReadByte ( ) : byte
ReadBytes ( ) : byte[]
ReadBytes ( int count ) : byte[]
ReadDecimal ( ) : decimal
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSByte ( ) : sbyte
ReadSingle ( ) : float
ReadString ( Encoding encoding ) : string
ReadUInt16 ( ) : ushort
ReadUInt32 ( ) : uint
ReadUInt64 ( ) : ulong
StreamValueReader ( Stream stream ) : System

Method Details

Flush() public method

public Flush ( ) : void
return void

ReadBool() public method

public ReadBool ( ) : bool
return bool

ReadByte() public method

public ReadByte ( ) : byte
return byte

ReadBytes() public method

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

ReadBytes() public method

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

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

ReadSByte() public method

public ReadSByte ( ) : sbyte
return sbyte

ReadSingle() public method

public ReadSingle ( ) : float
return float

ReadString() public method

public ReadString ( Encoding encoding ) : string
encoding System.Text.Encoding
return string

ReadUInt16() public method

public ReadUInt16 ( ) : ushort
return ushort

ReadUInt32() public method

public ReadUInt32 ( ) : uint
return uint

ReadUInt64() public method

public ReadUInt64 ( ) : ulong
return ulong

StreamValueReader() public method

public StreamValueReader ( Stream stream ) : System
stream Stream
return System