Method | Description | |
---|---|---|
CKBinaryReader ( Stream input ) : CK.Text |
Initializes a new CKBinaryReader based on the specified stream and using UTF-8 encoding.
|
|
CKBinaryReader ( Stream input, |
Initializes a new CKBinaryReader based on the specified stream and character encoding.
|
|
CKBinaryReader ( Stream input, |
Initializes a new CKBinaryReader based on the specified stream and character encoding.
|
|
ReadNonNegativeSmallInt32 ( ) : int |
Reads in a 32-bit integer in compressed format.
|
|
ReadNullableString ( ) : string |
Reads a potentially null string.
|
|
ReadNullableString ( bool streamIsCRLF ) : string |
Reads a potentially null string.
|
|
ReadSmallInt32 ( int minNegativeValue = -1 ) : int |
Reads in a 32-bit integer in compressed format wriiten by CKBinaryWriter.WriteSmallInt32(int, int).
|
|
ReadString ( bool streamIsCRLF ) : string |
Reads and normalizes a string according to Environment.NewLine. The fact that the data has actually be saved with LF or CRLF must be known.
|
public CKBinaryReader ( Stream input ) : CK.Text | ||
input | Stream | The input stream. |
return | CK.Text |
public CKBinaryReader ( Stream input, |
||
input | Stream | The input stream. |
encoding | The character encoding to use. | |
return | CK.Text |
public CKBinaryReader ( Stream input, |
||
input | Stream | The input stream. |
encoding | The character encoding to use. | |
leaveOpen | bool | true to leave the stream open after this reader object is disposed; otherwise, false. |
return | CK.Text |
public ReadNullableString ( bool streamIsCRLF ) : string | ||
streamIsCRLF | bool | True if the |
return | string |
public ReadSmallInt32 ( int minNegativeValue = -1 ) : int | ||
minNegativeValue | int | The same negative value used to write the integer. |
return | int |
public ReadString ( bool streamIsCRLF ) : string | ||
streamIsCRLF | bool | True if the |
return | string |