MyBinaryReader Class

My Binary Reader

Definition

Namespace: Metas.UncLib.Core.IO
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
C#
public class MyBinaryReader : BinaryReader
Inheritance
Object    BinaryReader    MyBinaryReader

Constructors

MyBinaryReader My Binary Reader

Properties

BaseStreamExposes access to the underlying stream of the BinaryReader.
(Inherited from BinaryReader)

Methods

CloseCloses the current reader and the underlying stream.
(Inherited from BinaryReader)
DisposeReleases all resources used by the current instance of the BinaryReader class.
(Inherited from BinaryReader)
Dispose(Boolean)Releases the unmanaged resources used by the BinaryReader class and optionally releases the managed resources.
(Inherited from BinaryReader)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FillBufferFills the internal buffer with the specified number of bytes read from the stream.
(Inherited from BinaryReader)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
PeekCharReturns the next available character and does not advance the byte or character position.
(Inherited from BinaryReader)
ReadReads characters from the underlying stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader)
Read(Byte, Int32, Int32)Reads the specified number of bytes from the stream, starting from a specified point in the byte array.
(Inherited from BinaryReader)
Read(Char, Int32, Int32)Reads the specified number of characters from the stream, starting from a specified point in the character array.
(Inherited from BinaryReader)
Read7BitEncodedInt Reads 7 bit encoded integer
ReadBooleanReads a Boolean value from the current stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader)
ReadByteReads the next byte from the current stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader)
ReadBytesReads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.
(Inherited from BinaryReader)
ReadCharReads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader)
ReadCharsReads the specified number of characters from the current stream, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader)
ReadDecimalReads a decimal value from the current stream and advances the current position of the stream by sixteen bytes.
(Inherited from BinaryReader)
ReadDoubleReads an 8-byte floating point value from the current stream and advances the current position of the stream by eight bytes.
(Inherited from BinaryReader)
ReadInt16Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes.
(Inherited from BinaryReader)
ReadInt32Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.
(Inherited from BinaryReader)
ReadInt64Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes.
(Inherited from BinaryReader)
ReadSByteReads a signed byte from this stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader)
ReadSingleReads a 4-byte floating point value from the current stream and advances the current position of the stream by four bytes.
(Inherited from BinaryReader)
ReadStringReads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.
(Inherited from BinaryReader)
ReadUInt16Reads a 2-byte unsigned integer from the current stream using little-endian encoding and advances the position of the stream by two bytes.
(Inherited from BinaryReader)
ReadUInt32Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes.
(Inherited from BinaryReader)
ReadUInt64Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes.
(Inherited from BinaryReader)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also