Свойство | Тип | Описание | |
---|---|---|---|
GuidLength | int |
Метод | Описание | |
---|---|---|
ReadGuid ( Stream stream ) : System.Guid |
Read a GUID value from a stream and advances the position within the stream by 16.
|
|
ReadLongTermId ( Stream stream ) : |
Read a LongTermId from a stream and advances the position within the stream by 24.
|
|
ReadString8 ( Stream stream ) : string |
Read an ASCII string value from a stream.
|
|
ReadUInt16 ( Stream stream ) : ushort |
Read a ushort value from a stream and advances the position within the stream by 2.
|
|
ReadUInt32 ( Stream stream ) : uint |
Read a uint value from a stream and advances the position within the stream by 4.
|
|
ReadUInt64 ( Stream stream ) : ulong |
Read a ulong value from a stream and advances the position within the stream by 8.
|
|
ReadUInt8 ( Stream stream ) : byte |
Read a byte from a stream and advances the position within the stream by 1.
|
|
WriteBuffer ( Stream stream, byte buffer ) : int |
Write bytes to a stream and advances the position within the stream by 16.
|
|
WriteGuid ( Stream stream, System.Guid guid ) : int |
Write a GUID value to a stream and advances the position within the stream by 16
|
|
WriteLongTermId ( Stream stream, |
Write a LongTermId value to a stream and advances the position within the stream by 24.
|
|
WriteUInt16 ( Stream stream, ushort value ) : int |
Write a ushort value to a stream and advances the position within the stream by 2.
|
|
WriteUInt32 ( Stream stream, uint value ) : int |
Write a uint value to a stream and advances the position within the stream by 4.
|
|
WriteUInt64 ( Stream stream, ulong value ) : int |
Write a ulong value to a stream and advances the position within the stream by 8.
|
public static ReadGuid ( Stream stream ) : System.Guid | ||
stream | Stream | The stream. |
Результат | System.Guid |
public static ReadLongTermId ( Stream stream ) : |
||
stream | Stream | The stream. |
Результат |
public static ReadString8 ( Stream stream ) : string | ||
stream | Stream | The stream. |
Результат | string |
public static ReadUInt16 ( Stream stream ) : ushort | ||
stream | Stream | The stream. |
Результат | ushort |
public static ReadUInt32 ( Stream stream ) : uint | ||
stream | Stream | The stream. |
Результат | uint |
public static ReadUInt64 ( Stream stream ) : ulong | ||
stream | Stream | The stream. |
Результат | ulong |
public static ReadUInt8 ( Stream stream ) : byte | ||
stream | Stream | The stream. |
Результат | byte |
public static WriteBuffer ( Stream stream, byte buffer ) : int | ||
stream | Stream | The stream. |
buffer | byte | A byte array. |
Результат | int |
public static WriteGuid ( Stream stream, System.Guid guid ) : int | ||
stream | Stream | The stream. |
guid | System.Guid | A GUID value. |
Результат | int |
public static WriteLongTermId ( Stream stream, |
||
stream | Stream | The stream. |
id | A LongTermId value. | |
Результат | int |
public static WriteUInt16 ( Stream stream, ushort value ) : int | ||
stream | Stream | The stream. |
value | ushort | A ushort value. |
Результат | int |
public static WriteUInt32 ( Stream stream, uint value ) : int | ||
stream | Stream | The stream. |
value | uint | A uint value. |
Результат | int |
public static WriteUInt64 ( Stream stream, ulong value ) : int | ||
stream | Stream | The stream. |
value | ulong | A ulong value. |
Результат | int |