Click or drag to resize

DataReader Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
BinaryReader extension that adds methods for reading 32 and 64-bit integer values in a packed format.
Inheritance Hierarchy

Namespace:  Tangosol.IO
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class DataReader : BinaryReader

The DataReader type exposes the following members.

Constructors
  NameDescription
Public methodDataReader
Construct a new DataReader that will read from a passed Stream object.
Top
Properties
  NameDescription
Public propertyBaseStream (Inherited from BinaryReader.)
Top
Methods
  NameDescription
Public methodClose
Closes the current reader and the underlying stream.
(Inherited from BinaryReader.)
Public methodDispose (Inherited from BinaryReader.)
Protected methodDispose(Boolean) (Inherited from BinaryReader.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFillBuffer (Inherited from BinaryReader.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPeekChar (Inherited from BinaryReader.)
Public methodRead (Inherited from BinaryReader.)
Public methodRead(Char, Int32, Int32) (Inherited from BinaryReader.)
Public methodRead(Byte, Int32, Int32) (Inherited from BinaryReader.)
Protected methodRead7BitEncodedInt (Inherited from BinaryReader.)
Public methodReadBoolean (Inherited from BinaryReader.)
Public methodReadByte (Inherited from BinaryReader.)
Public methodReadBytes (Inherited from BinaryReader.)
Public methodReadChar (Inherited from BinaryReader.)
Public methodReadChars (Inherited from BinaryReader.)
Public methodReadDecimal (Inherited from BinaryReader.)
Public methodReadDouble
Reads bits which are stored in an Int64 instance and converts them into the Double object.
(Overrides BinaryReaderReadDouble.)
Public methodReadInt16
Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes.
(Overrides BinaryReaderReadInt16.)
Public methodReadInt32
Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.
(Overrides BinaryReaderReadInt32.)
Public methodReadInt64
Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes.
(Overrides BinaryReaderReadInt64.)
Public methodReadPackedInt32
Reads an Int32 value using a variable-length storage format.
Public methodReadPackedInt64
Reads an Int64 value using a variable-length storage format.
Public methodReadPackedRawInt128
Reads a RawInt128 value from DataReader.
Public methodReadSByte (Inherited from BinaryReader.)
Public methodReadSingle
Reads bits which are stored in an Int32 instance and converts them into the Single object.
(Overrides BinaryReaderReadSingle.)
Public methodReadString
Reads string from the stream.
(Overrides BinaryReaderReadString.)
Public methodReadUInt16
Reads a 2-byte unsigned integer from the current stream using little endian encoding and advances the position of the stream by two bytes.
(Overrides BinaryReaderReadUInt16.)
Public methodReadUInt32
Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes.
(Overrides BinaryReaderReadUInt32.)
Public methodReadUInt64
Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes.
(Overrides BinaryReaderReadUInt64.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

The "packed" format includes a sign bit (0x40) and a continuation bit (0x80) in the first byte, followed by the least 6 significant bits of the int value. Subsequent bytes (each appearing only if the previous byte had its continuation bit set) include a continuation bit (0x80) and the next least 7 significant bits of the int value.

In this way, a 32-bit value is encoded into 1-5 bytes, and 64-bit value is encoded into 1-10 bytes, depending on the magnitude of the value being encoded.

See Also