Table of Contents

Class ZeroesDataSource

Namespace
AsmResolver.IO
Assembly
AsmResolver.dll

Implements a data source that reads zero bytes.

public sealed class ZeroesDataSource : ISpanDataSource, IDataSource
Inheritance
ZeroesDataSource
Implements
Inherited Members
Extension Methods

Constructors

ZeroesDataSource(ulong)

Creates a new zeroes data source.

public ZeroesDataSource(ulong length)

Parameters

length ulong

The number of zero bytes.

ZeroesDataSource(ulong, ulong)

Creates a new zeroes data source.

public ZeroesDataSource(ulong baseAddress, ulong length)

Parameters

baseAddress ulong

The base address of the segment.

length ulong

The number of zero bytes.

Properties

BaseAddress

Gets the first byte address of the data source that is accessible.

public ulong BaseAddress { get; }

Property Value

ulong

this[ulong]

Reads a single byte at the provided address.

public byte this[ulong address] { get; }

Parameters

address ulong

The address to read from.

Property Value

byte

Length

Gets the number of bytes accessible in the data source.

public ulong Length { get; }

Property Value

ulong

Methods

IsValidAddress(ulong)

Determines whether the provided address is a valid address in the data source.

public bool IsValidAddress(ulong address)

Parameters

address ulong

The address to verify.

Returns

bool

true if the address is valid, false otherwise.

ReadBytes(ulong, byte[], int, int)

Reads a block of data from the data source.

public int ReadBytes(ulong address, byte[] buffer, int index, int count)

Parameters

address ulong

The starting address to read from.

buffer byte[]

The buffer that receives the read bytes.

index int

The index into the buffer to start writing at.

count int

The number of bytes to read.

Returns

int

The number of bytes that were read.

ReadBytes(ulong, Span<byte>)

Reads a block of data from the data source.

public int ReadBytes(ulong address, Span<byte> buffer)

Parameters

address ulong

The starting address to read from.

buffer Span<byte>

The buffer that receives the read bytes.

Returns

int

The number of bytes that were read.