Skip to content

WeaverExceptionFinallyHandler Class

An exception handler with a finally block.

C#
public sealed class WeaverExceptionFinallyHandler : IWeaverExceptionHandler

Inheritance object

Implements IWeaverExceptionHandler

This will get translated into a Mono.Cecil ExceptionHandler block when applied.

Inclusive start ILLabel for Try block.

C#
public ILLabel? TryStart { get; set; }

Inclusive try end ILLabel for Try block.

C#
public ILLabel? TryEnd { get; set; }

Inclusive finally start ILLabel for Finally block.

C#
public ILLabel? HandlerStart { get; set; }

Inclusive finally end ILLabel for Finally block.

C#
public ILLabel? HandlerEnd { get; set; }