Table of Contents

Enum CilExceptionHandlerType

Namespace
AsmResolver.DotNet.Code.Cil
Assembly
AsmResolver.DotNet.dll

Provides members that define all possible types of protected regions in a CIL method body.

public enum CilExceptionHandlerType : uint

Fields

Exception = 0

Indicates the protected region defines a standard exception handler block that catches any exception from a specific exception type.

Fault = 4

Indicates the protected region defines a block of code that is finalized by a fault clause if there occurred an exception.

Filter = 1

Indicates the protected region defines an exception handler that catches any exception that passes a filter.

Finally = 2

Indicates the protected region defines a block of code that is always finalized by a finally clause.