Method | Description | |
---|---|---|
ReadByteArray ( this stream ) : byte[] |
Reads a byte array.
|
|
ReadInet ( this stream ) : |
Reads an IP-Address and port
|
|
ReadInt ( this stream ) : int |
Reads an int.
|
|
ReadShort ( this stream ) : ushort |
Reads a short.
|
|
ReadShortByteArray ( this stream ) : byte[] |
Reads a short byte array.
|
|
ReadString ( this stream ) : string |
Reads a string.
|
|
ReadStringList ( this stream ) : string[] |
Reads a list of strings
|
|
ReadStringMultimap ( this stream ) : string[]>.Dictionary |
Reads a string multimap.
|
|
ReadUuid ( this stream ) : System.Guid |
Reads a UUID/GUID.
|
|
WriteByteArray ( this stream, byte data ) : void |
Writes a byte array.
|
|
WriteConsistency ( this stream, CqlConsistency consistency ) : void |
Writes the consistency.
|
|
WriteInet ( this stream, |
Writes an IP address and port
|
|
WriteInt ( this stream, int data ) : void |
Writes an int.
|
|
WriteLong ( this stream, long data ) : void |
Writes an long.
|
|
WriteLongString ( this stream, string data ) : void |
Writes a long string.
|
|
WriteShort ( this stream, ushort data ) : void |
Writes a short.
|
|
WriteShortByteArray ( this stream, byte data ) : void |
Writes a short byte array.
|
|
WriteString ( this stream, string data ) : void |
Writes a string.
|
|
WriteStringList ( this stream, IList |
Writes a list of strings.
|
|
WriteStringMap ( this stream, string>.IDictionary |
Writes a string map.
|
|
WriteUuid ( this stream, System.Guid guid ) : void |
Writes a UUID/GUID.
|
Method | Description | |
---|---|---|
ReadBuffer ( this stream, byte buffer ) : void |
Reads the buffer.
|
|
ReadBuffer ( this stream, byte buffer, int len ) : void |
Reads the buffer up to a specified length
|
public static ReadByteArray ( this stream ) : byte[] | ||
stream | this | The stream. |
return | byte[] |
public static ReadInet ( this stream ) : |
||
stream | this | The stream. |
return |
public static ReadInt ( this stream ) : int | ||
stream | this | The stream. |
return | int |
public static ReadShort ( this stream ) : ushort | ||
stream | this | The stream. |
return | ushort |
public static ReadShortByteArray ( this stream ) : byte[] | ||
stream | this | The stream. |
return | byte[] |
public static ReadString ( this stream ) : string | ||
stream | this | The stream. |
return | string |
public static ReadStringList ( this stream ) : string[] | ||
stream | this | The stream. |
return | string[] |
public static ReadStringMultimap ( this stream ) : string[]>.Dictionary |
||
stream | this | The stream. |
return | string[]>.Dictionary |
public static ReadUuid ( this stream ) : System.Guid | ||
stream | this | The stream. |
return | System.Guid |
public static WriteByteArray ( this stream, byte data ) : void | ||
stream | this | The stream. |
data | byte | The data. |
return | void |
public static WriteConsistency ( this stream, CqlConsistency consistency ) : void | ||
stream | this | The stream. |
consistency | CqlConsistency | The consistency. |
return | void |
public static WriteInet ( this stream, |
||
stream | this | The stream. |
endpoint | The endpoint. | |
return | void |
public static WriteInt ( this stream, int data ) : void | ||
stream | this | The stream. |
data | int | The data. |
return | void |
public static WriteLong ( this stream, long data ) : void | ||
stream | this | The stream. |
data | long | The data. |
return | void |
public static WriteLongString ( this stream, string data ) : void | ||
stream | this | The stream. |
data | string | The data. |
return | void |
public static WriteShort ( this stream, ushort data ) : void | ||
stream | this | The stream. |
data | ushort | The data. |
return | void |
public static WriteShortByteArray ( this stream, byte data ) : void | ||
stream | this | The stream. |
data | byte | The data. |
return | void |
public static WriteString ( this stream, string data ) : void | ||
stream | this | The stream. |
data | string | The data. |
return | void |
public static WriteStringList ( this stream, IList |
||
stream | this | The stream. |
data | IList |
The data. |
return | void |
public static WriteStringMap ( this stream, string>.IDictionary |
||
stream | this | The stream. |
dic | string>.IDictionary | The dic. |
return | void |
public static WriteUuid ( this stream, System.Guid guid ) : void | ||
stream | this | The stream. |
guid | System.Guid | The GUID. |
return | void |