WeaverExceptionFinallyHandler Class
Definition
Section titled “Definition”An exception handler with a finally block.
public sealed class WeaverExceptionFinallyHandler : IWeaverExceptionHandlerInheritance object
Implements IWeaverExceptionHandler
Remarks
Section titled “Remarks”This will get translated into a Mono.Cecil ExceptionHandler block when applied.
Properties
Section titled “Properties”TryStart
Section titled “TryStart”Inclusive start ILLabel for Try block.
public ILLabel? TryStart { get; set; }TryEnd
Section titled “TryEnd”Inclusive try end ILLabel for Try block.
public ILLabel? TryEnd { get; set; }HandlerStart
Section titled “HandlerStart”Inclusive finally start ILLabel for Finally block.
public ILLabel? HandlerStart { get; set; }HandlerEnd
Section titled “HandlerEnd”Inclusive finally end ILLabel for Finally block.
public ILLabel? HandlerEnd { get; set; }