IBinReader Type
IBinReader provides an interface for reading byte sequences from a byte array (or a ByteSpan). The endianness is determined by the implementation of the interface.
Instance members
Instance member | Description |
|
|
Full Usage:
this.ReadChars
Parameters:
ByteSpan
offset : int
size : int
Returns: char[]
Modifiers: abstract |
|
Full Usage:
this.ReadChars
Parameters:
byte[]
offset : int
size : int
Returns: char[]
Modifiers: abstract |
|
Full Usage:
this.ReadInt16
Parameters:
ByteSpan
offset : int
Returns: int16
Modifiers: abstract |
|
Full Usage:
this.ReadInt16
Parameters:
byte[]
offset : int
Returns: int16
Modifiers: abstract |
|
Full Usage:
this.ReadInt32
Parameters:
ByteSpan
offset : int
Returns: int32
Modifiers: abstract |
|
Full Usage:
this.ReadInt32
Parameters:
byte[]
offset : int
Returns: int32
Modifiers: abstract |
|
Full Usage:
this.ReadInt32LEB128
Parameters:
ByteSpan
offset : int
Returns: int32 * int
Modifiers: abstract |
|
Full Usage:
this.ReadInt32LEB128
Parameters:
byte[]
offset : int
Returns: int32 * int
Modifiers: abstract |
|
Full Usage:
this.ReadInt64
Parameters:
ByteSpan
offset : int
Returns: int64
Modifiers: abstract |
|
Full Usage:
this.ReadInt64
Parameters:
byte[]
offset : int
Returns: int64
Modifiers: abstract |
|
Full Usage:
this.ReadInt64LEB128
Parameters:
ByteSpan
offset : int
Returns: int64 * int
Modifiers: abstract |
|
Full Usage:
this.ReadInt64LEB128
Parameters:
byte[]
offset : int
Returns: int64 * int
Modifiers: abstract |
|
Full Usage:
this.ReadInt8
Parameters:
ByteSpan
offset : int
Returns: int8
Modifiers: abstract |
|
Full Usage:
this.ReadInt8
Parameters:
byte[]
offset : int
Returns: int8
Modifiers: abstract |
|
Full Usage:
this.ReadUInt16
Parameters:
ByteSpan
offset : int
Returns: uint16
Modifiers: abstract |
|
Full Usage:
this.ReadUInt16
Parameters:
byte[]
offset : int
Returns: uint16
Modifiers: abstract |
|
Full Usage:
this.ReadUInt32
Parameters:
ByteSpan
offset : int
Returns: uint32
Modifiers: abstract |
|
Full Usage:
this.ReadUInt32
Parameters:
byte[]
offset : int
Returns: uint32
Modifiers: abstract |
|
Full Usage:
this.ReadUInt32LEB128
Parameters:
ByteSpan
offset : int
Returns: uint32 * int
Modifiers: abstract |
|
Full Usage:
this.ReadUInt32LEB128
Parameters:
byte[]
offset : int
Returns: uint32 * int
Modifiers: abstract |
|
Full Usage:
this.ReadUInt64
Parameters:
ByteSpan
offset : int
Returns: uint64
Modifiers: abstract |
|
Full Usage:
this.ReadUInt64
Parameters:
byte[]
offset : int
Returns: uint64
Modifiers: abstract |
|
Full Usage:
this.ReadUInt64LEB128
Parameters:
ByteSpan
offset : int
Returns: uint64 * int
Modifiers: abstract |
|
Full Usage:
this.ReadUInt64LEB128
Parameters:
byte[]
offset : int
Returns: uint64 * int
Modifiers: abstract |
|
Full Usage:
this.ReadUInt8
Parameters:
ByteSpan
offset : int
Returns: uint8
Modifiers: abstract |
|
Full Usage:
this.ReadUInt8
Parameters:
byte[]
offset : int
Returns: uint8
Modifiers: abstract |