Table of Contents

Interface IResourceEntry

Namespace
AsmResolver.PE.Win32Resources
Assembly
AsmResolver.PE.dll

Represents one entry in a win32 resource directory.

public interface IResourceEntry : IOwnedCollectionElement<ResourceDirectory>
Inherited Members

Properties

Id

Gets or sets the ID of the entry.

uint Id { get; set; }

Property Value

uint

IsData

Gets a value indicating the entry is a data entry or not.

bool IsData { get; }

Property Value

bool

IsDirectory

Gets a value indicating the entry is a sub directory or not.

bool IsDirectory { get; }

Property Value

bool

Name

Gets or sets the name of the entry.

string? Name { get; set; }

Property Value

string

ParentDirectory

Gets the parent directory the entry is stored in.

ResourceDirectory? ParentDirectory { get; }

Property Value

ResourceDirectory