Class ResourceLocation
Record to handel location information.
Inheritance
System.Object
ResourceLocation
Implements
System.IEquatable<ResourceLocation>
Namespace: PeNet.Header.Resource
Assembly: PeNet.dll
Syntax
public class ResourceLocation : object
Constructors
| Improve this Doc View SourceResourceLocation(ImageResourceDataEntry, UInt32, UInt32)
Record to handel location information.
Declaration
public ResourceLocation(ImageResourceDataEntry Resource, uint Offset, uint Size)
Parameters
| Type | Name | Description |
|---|---|---|
| ImageResourceDataEntry | Resource | An ImageResourceDataEntry. |
| System.UInt32 | Offset | Offset of the ImageResourceDataEntry in the PE file. |
| System.UInt32 | Size | Size of the ImageResourceDataEntry in the PE file. |
Properties
| Improve this Doc View SourceOffset
Declaration
public uint Offset { get; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
Resource
Declaration
public ImageResourceDataEntry Resource { get; }
Property Value
| Type | Description |
|---|---|
| ImageResourceDataEntry |
Size
Declaration
public uint Size { get; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
Implements
System.IEquatable<>