Header menu logo B2R2

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

this.Endianness

Full Usage: this.Endianness

Returns: Endian
Modifiers: abstract

The endianness of this reader.

Returns: Endian

this.ReadChars

Full Usage: this.ReadChars

Parameters:
    span : ByteSpan
    offset : int
    size : int

Returns: char[]
Modifiers: abstract

Read a character array of `size` from the given byte span.

span : ByteSpan
offset : int
size : int
Returns: char[]

this.ReadChars

Full Usage: this.ReadChars

Parameters:
    bs : byte[]
    offset : int
    size : int

Returns: char[]
Modifiers: abstract

Read a character array of size n from the given byte array.

bs : byte[]
offset : int
size : int
Returns: char[]

this.ReadInt16

Full Usage: this.ReadInt16

Parameters:
Returns: int16
Modifiers: abstract

Read an int16 value from the given byte span.

span : ByteSpan
offset : int
Returns: int16

this.ReadInt16

Full Usage: this.ReadInt16

Parameters:
    bs : byte[]
    offset : int

Returns: int16
Modifiers: abstract

Read an int16 value from the given byte array.

bs : byte[]
offset : int
Returns: int16

this.ReadInt32

Full Usage: this.ReadInt32

Parameters:
Returns: int32
Modifiers: abstract

Read an int32 value from the given byte span.

span : ByteSpan
offset : int
Returns: int32

this.ReadInt32

Full Usage: this.ReadInt32

Parameters:
    bs : byte[]
    offset : int

Returns: int32
Modifiers: abstract

Read an int32 value from the given byte array.

bs : byte[]
offset : int
Returns: int32

this.ReadInt32LEB128

Full Usage: this.ReadInt32LEB128

Parameters:
Returns: int32 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte span. This function returns a tuple of (the decoded int32, and the count of how many bytes were read).

span : ByteSpan
offset : int
Returns: int32 * int

this.ReadInt32LEB128

Full Usage: this.ReadInt32LEB128

Parameters:
    bs : byte[]
    offset : int

Returns: int32 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte array. This function returns a tuple of (the decoded int32, and the count of how many bytes were read).

bs : byte[]
offset : int
Returns: int32 * int

this.ReadInt64

Full Usage: this.ReadInt64

Parameters:
Returns: int64
Modifiers: abstract

Read an int64 value from the given byte span.

span : ByteSpan
offset : int
Returns: int64

this.ReadInt64

Full Usage: this.ReadInt64

Parameters:
    bs : byte[]
    offset : int

Returns: int64
Modifiers: abstract

Read an int64 value from the given byte array.

bs : byte[]
offset : int
Returns: int64

this.ReadInt64LEB128

Full Usage: this.ReadInt64LEB128

Parameters:
Returns: int64 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte span. This function returns a tuple of (the decoded int64, and the count of how many bytes were read).

span : ByteSpan
offset : int
Returns: int64 * int

this.ReadInt64LEB128

Full Usage: this.ReadInt64LEB128

Parameters:
    bs : byte[]
    offset : int

Returns: int64 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte array. This function returns a tuple of (the decoded int64, and the count of how many bytes were read).

bs : byte[]
offset : int
Returns: int64 * int

this.ReadInt8

Full Usage: this.ReadInt8

Parameters:
Returns: int8
Modifiers: abstract

Read a single byte as an int8 from the given byte span.

span : ByteSpan
offset : int
Returns: int8

this.ReadInt8

Full Usage: this.ReadInt8

Parameters:
    bs : byte[]
    offset : int

Returns: int8
Modifiers: abstract

Read a single byte as an int8 from the given byte array.

bs : byte[]
offset : int
Returns: int8

this.ReadUInt16

Full Usage: this.ReadUInt16

Parameters:
Returns: uint16
Modifiers: abstract

Read a uint16 value from the given byte span.

span : ByteSpan
offset : int
Returns: uint16

this.ReadUInt16

Full Usage: this.ReadUInt16

Parameters:
    bs : byte[]
    offset : int

Returns: uint16
Modifiers: abstract

Read a uint16 value from the given byte array.

bs : byte[]
offset : int
Returns: uint16

this.ReadUInt32

Full Usage: this.ReadUInt32

Parameters:
Returns: uint32
Modifiers: abstract

Read a uint32 value from the given byte span.

span : ByteSpan
offset : int
Returns: uint32

this.ReadUInt32

Full Usage: this.ReadUInt32

Parameters:
    bs : byte[]
    offset : int

Returns: uint32
Modifiers: abstract

Read a uint32 value from the given byte array.

bs : byte[]
offset : int
Returns: uint32

this.ReadUInt32LEB128

Full Usage: this.ReadUInt32LEB128

Parameters:
Returns: uint32 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte span. This function returns a tuple of (the decoded uint32, and the count of how many bytes were read).

span : ByteSpan
offset : int
Returns: uint32 * int

this.ReadUInt32LEB128

Full Usage: this.ReadUInt32LEB128

Parameters:
    bs : byte[]
    offset : int

Returns: uint32 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte array. This function returns a tuple of (the decoded uint32, and the count of how many bytes were read).

bs : byte[]
offset : int
Returns: uint32 * int

this.ReadUInt64

Full Usage: this.ReadUInt64

Parameters:
Returns: uint64
Modifiers: abstract

Read a uint64 value from the given byte span.

span : ByteSpan
offset : int
Returns: uint64

this.ReadUInt64

Full Usage: this.ReadUInt64

Parameters:
    bs : byte[]
    offset : int

Returns: uint64
Modifiers: abstract

Read a uint64 value from the given byte array.

bs : byte[]
offset : int
Returns: uint64

this.ReadUInt64LEB128

Full Usage: this.ReadUInt64LEB128

Parameters:
Returns: uint64 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte span. This function returns a tuple of (the decoded uint64, and the count of how many bytes were read).

span : ByteSpan
offset : int
Returns: uint64 * int

this.ReadUInt64LEB128

Full Usage: this.ReadUInt64LEB128

Parameters:
    bs : byte[]
    offset : int

Returns: uint64 * int
Modifiers: abstract

Read a LEB128-encoded integer from the given byte array. This function returns a tuple of (the decoded uint64, and the count of how many bytes were read).

bs : byte[]
offset : int
Returns: uint64 * int

this.ReadUInt8

Full Usage: this.ReadUInt8

Parameters:
Returns: uint8
Modifiers: abstract

Read a single byte as a uint8 from the given byte array.

span : ByteSpan
offset : int
Returns: uint8

this.ReadUInt8

Full Usage: this.ReadUInt8

Parameters:
    bs : byte[]
    offset : int

Returns: uint8
Modifiers: abstract

Read a single byte as a uint8 from the given byte array.

bs : byte[]
offset : int
Returns: uint8

Type something to start searching.