Table of Contents

Interface IReadyToRunSection

Namespace
AsmResolver.PE.DotNet.ReadyToRun
Assembly
AsmResolver.PE.dll

Represents a single section within a ReadyToRun directory of a .NET module.

public interface IReadyToRunSection : ISegment, IOffsetProvider, IWritable
Inherited Members

Properties

CanRead

Indicates whether the raw contents of the section can be read using a BinaryStreamReader.

bool CanRead { get; }

Property Value

bool

Type

Gets the type of the ReadyToRun section.

ReadyToRunSectionType Type { get; }

Property Value

ReadyToRunSectionType

Methods

CreateReader()

Creates a binary reader that reads the raw contents of the ReadyToRun section.

BinaryStreamReader CreateReader()

Returns

BinaryStreamReader

The reader.

Exceptions

InvalidOperationException

Occurs when CanRead is false.