Name | Description | |
---|---|---|
![]() | PeekUInt64 | Returns a UInt64 value from the stream without repositioning the stream |
![]() | ReadBool | Returns a bool value from the stream. |
![]() | ReadBoolArray | Returns an array of bool values from the stream. |
![]() | ReadDateTime | Returns a DateTime value from the stream. |
![]() | ReadDateTimeArray | Returns an array of DateTime values from the stream. |
![]() | ReadDateTimeOffset | Returns a DateTimeOffset value from the stream. |
![]() | ReadDateTimeOffsetArray | Returns an array of DateTimeOffset values from the stream. |
![]() | ReadDouble | Returns a double value from the stream. |
![]() | ReadDoubleArray | Returns an array of double values from the stream. |
![]() | ReadField | Overloaded. Returns a field value from the stream that was written as an object |
![]() | ReadFieldArray | Returns an array of field values from the stream. |
![]() | ReadGuid | Returns a Guid value from the stream. |
![]() | ReadGuidArray | Returns an array of Guid values from the stream. |
![]() | ReadInt32 | Returns an Int32 value from the stream. |
![]() | ReadInt32Array | Returns an array of Int32 values from the stream. |
![]() | ReadInt64 | Returns an Int64 value from the stream. |
![]() | ReadInt64Array | Returns an array of Int64 values from the stream. |
![]() | ReadString | Read a string from the stream. We optimize strings by maintaining a hash table of each unique string we have seen. Each string is sent with as an integer index into the table. When a new string is encountered, it's index is followed by the string value. |
![]() | ReadStringArray | Read an array of strings from the stream. |
![]() | ReadTimeSpan | Returns a TimeSpan value from the stream. |
![]() | ReadTimeSpanArray | Returns an array of TimeSpan values from the stream. |
![]() | ReadUInt32 | Returns a UInt32 value from the stream. |
![]() | ReadUInt32Array | Returns an array of UInt32 values from the stream. |
![]() | ReadUInt64 | Returns a UInt64 value from the stream. |
![]() | ReadUInt64Array | Returns an array of UInt64 values from the stream. |