[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.BigEndianBinaryReader

BigEndianBinaryReader Class

Analog of BinaryReader but uses big-endian byte order.

Inheritance
BigEndianBinaryReader
Implements
Namespace: GrapeCity.Documents.Common
Assembly: DS.Documents.Imaging.dll
Syntax
public class BigEndianBinaryReader : IDisposable
Public Class BigEndianBinaryReader
    Implements IDisposable

Constructors

Name Description
BigEndianBinaryReader(Stream, bool)

Initializes a new instance of the BigEndianBinaryReader class.

Methods

Name Description
Dispose()

Releases all resources used by the current instance of the BigEndianBinaryReader class.

Dispose(bool)

Releases the unmanaged resources used by the BigEndianBinaryReader class and optionally releases the managed resources.

ReadBytes(int)

Reads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.

ReadInt16()

Reads a 2-byte signed integer from the current stream and advances the current position of the stream by four bytes.

ReadInt32()

Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.

ReadInt32LE()

Reads a 4-byte signed integer from the current stream using little-ending byte order and advances the current position of the stream by four bytes.

ReadUInt16()

Reads a 2-byte unsigned integer from the current stream and advances the current position of the stream by four bytes.

ReadUInt32()

Reads a 4-byte unsigned integer from the current stream and advances the current position of the stream by four bytes.