Class ExceptionDirectory<TFunction>
- Namespace
- AsmResolver.PE.Exceptions
- Assembly
- AsmResolver.PE.dll
Provides a basic implementation of the IExceptionDirectory directory.
public class ExceptionDirectory<TFunction> : IExceptionDirectory where TFunction : IRuntimeFunction
Type Parameters
TFunction
The type of functions to store.
- Inheritance
-
ExceptionDirectory<TFunction>
- Implements
- Inherited Members
Properties
Entries
Gets a collection of functions that are stored in the table.
public IList<TFunction> Entries { get; }
Property Value
- IList<TFunction>
Methods
GetEntries()
Obtains the entries in the exception handler table.
protected virtual IList<TFunction> GetEntries()
Returns
- IList<TFunction>
The entries.
Remarks
This method is called upon initialization of the Entries property.