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
IsData
Gets a value indicating the entry is a data entry or not.
bool IsData { get; }
  Property Value
IsDirectory
Gets a value indicating the entry is a sub directory or not.
bool IsDirectory { get; }
  Property Value
Name
Gets or sets the name of the entry.
string? Name { get; set; }
  Property Value
ParentDirectory
Gets the parent directory the entry is stored in.
ResourceDirectory? ParentDirectory { get; }