Method | Description | |
---|---|---|
AddRef ( Object obj ) : int |
Adds an object reference.
|
|
CHessianInput ( Stream srInput ) : System |
Constructor
|
|
CompleteCall ( ) : void |
Completes reading the call A successful completion will have a single value: z
|
|
CompleteReply ( ) : void |
Completes reading the call A successful completion will have a single value: z
|
|
CompleteValueReply ( ) : void |
Completes reading the call A successful completion will have a single value:
|
|
GetTotalBytesRead ( ) : int | ||
Init ( Stream srInput ) : void |
Initialization with the stream that will be read from
|
|
IsEnd ( ) : bool |
Returns true if the data has ended.
|
|
ReadBoolean ( ) : bool |
Reads a boolean value
|
|
ReadByte ( ) : int |
Reads a byte from the stream.
|
|
ReadBytes ( ) : byte[] |
Reads the byte array
|
|
ReadBytes ( sbyte arrBuffer, int intOffset, int intLength ) : int |
Reads a byte array from the stream.
|
|
ReadCall ( ) : int |
Starts reading the call c major minor
|
|
ReadDouble ( ) : double |
Reads a double.
|
|
ReadEnd ( ) : void |
Read the end byte
|
|
ReadFloat ( ) : float |
Reads a float *
|
|
ReadHeader ( ) : String |
Reads a header, returning null if there are no headers. H b16 b8 value
|
|
ReadInputStream ( ) : Stream |
Reads bytes based on an input stream.
|
|
ReadInt ( ) : int |
Reads an integer
|
|
ReadLength ( ) : int |
Reads the length of a list.
|
|
ReadListEnd ( ) : void |
Read the end byte
|
|
ReadListStart ( ) : int |
Reads the start of a list
|
|
ReadLong ( ) : long |
Reads a long
|
|
ReadMapEnd ( ) : void |
Reads the end byte.
|
|
ReadMapStart ( ) : int |
Reads the start of a list.
|
|
ReadMethod ( ) : String |
Starts reading the call A successful completion will have a single value: m b16 b8 method
|
|
ReadObject ( ) : object |
Reads an arbitrary object from the input stream.
|
|
ReadObject ( Type expectedType ) : object |
Reads an arbitrary object from the input stream.
|
|
ReadRef ( ) : object |
Reads a reference.
|
|
ReadReply ( Type expectedType ) : object |
Reads a reply as an object.
|
|
ReadString ( ) : string |
Reads a string
|
|
ReadType ( ) : String |
Reads an object type.
|
|
ReadUTCDate ( ) : long |
Reads a date.
|
|
StartCall ( ) : void |
Starts reading the call A successful completion will have a single value: c major minor m b16 b8 method
|
|
StartReply ( ) : void |
Starts reading the reply A successful completion will have a single value: r
|
Method | Description | |
---|---|---|
GetDeserializer ( |
||
GetObjectDeserializer ( string strType ) : hessiancsharp.io.AbstractDeserializer | ||
LoadString ( ) : string | ||
ParseByte ( ) : int |
Reads a byte from the underlying stream.
|
|
ParseChar ( ) : int |
Reads a character from the underlying stream.
|
|
ParseDouble ( ) : double |
Parses a 64-bit double value from the stream.
|
|
ParseInt ( ) : int |
Parses a 32-bit integer value from the stream.
|
|
ParseLong ( ) : long |
Parses a 64-bit long value from the stream.
|
|
ParseUTF8Char ( ) : int |
Reads a single UTF8 character.
|
|
PrepareFault ( ) : |
Prepares the fault.
|
|
Read ( ) : int |
Reads the next byte from the inputStream
|
|
Read ( byte buffer, int offset, int length ) : int |
Reads bytes from the underlying stream.
|
|
ReadFault ( ) : Object>.Dictionary |
Reads a fault.
|
|
parseXML ( ) : System.Xml.XmlNode |
Reads string from stream and builds Xml - Node
|
public CHessianInput ( Stream srInput ) : System | ||
srInput | Stream | InputStream what have to read from |
return | System |
public Init ( Stream srInput ) : void | ||
srInput | Stream | stream /// that will be read from |
return | void |
public ReadBytes ( sbyte arrBuffer, int intOffset, int intLength ) : int | ||
arrBuffer | sbyte | Buffer for read |
intOffset | int | Offset |
intLength | int | Length |
return | int |
public ReadObject ( Type expectedType ) : object | ||
expectedType | Type | the expected class if the protocol doesn't supply it. |
return | object |
public ReadReply ( Type expectedType ) : object | ||
expectedType | Type | the expected class if the protocol doesn't supply it. |
return | object |