IWeaverExceptionHandler Interface
Definition
Section titled “Definition”An exception handler for ILWeaver.
public interface IWeaverExceptionHandlerRemarks
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.
ILLabel? TryStart { get; set; }TryEnd
Section titled “TryEnd”Inclusive try end ILLabel for Try block.
ILLabel? TryEnd { get; set; }HandlerStart
Section titled “HandlerStart”Inclusive catch start ILLabel for handler block.
ILLabel? HandlerStart { get; set; }HandlerEnd
Section titled “HandlerEnd”Inclusive catch end ILLabel for handler block.
ILLabel? HandlerEnd { get; set; }