Table of Contents

Struct RelocatableSegment

Namespace
AsmResolver.PE.Relocations
Assembly
AsmResolver.PE.dll

Pairs a segment with relocation information.

public readonly struct RelocatableSegment
Inherited Members

Constructors

RelocatableSegment(ISegment, IList<BaseRelocation>)

Creates a new pairing between a segment and relocation information.

public RelocatableSegment(ISegment segment, IList<BaseRelocation> relocations)

Parameters

segment ISegment

The segment.

relocations IList<BaseRelocation>

The relocation information.

Properties

Relocations

Gets the relocation information required to relocate the segment.

public IList<BaseRelocation> Relocations { get; }

Property Value

IList<BaseRelocation>

Segment

Gets the segment that is relocatable.

public ISegment Segment { get; }

Property Value

ISegment