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
ISegmentThe 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
Segment
Gets the segment that is relocatable.
public ISegment Segment { get; }