IInformationalInstruction.HandlerPart Enum
Definition
Section titled “Definition”The handler part of an instruction.
[Flags]public enum IInformationalInstruction.HandlerPartFields
Section titled “Fields”This is not a part of any Exception handler block.
None = 0TryStart
Section titled “TryStart”Start of a try block.
TryStart = 1TryEnd
Section titled “TryEnd”End of a try block (exclusive).
TryEnd = 2FilterStart
Section titled “FilterStart”Start of a filter block.
FilterStart = 4HandlerStart
Section titled “HandlerStart”Start of a handler block.
HandlerStart = 8HandlerEnd
Section titled “HandlerEnd”End of a try block (exclusive).
HandlerEnd = 16BeforeTryStart
Section titled “BeforeTryStart”One instruction before the start of a try block.
BeforeTryStart = 32TryOrHandlerEnd
Section titled “TryOrHandlerEnd”End of a try or handler block (exclusive).
TryOrHandlerEnd = TryEnd | HandlerEndFilterOrHandlerStart
Section titled “FilterOrHandlerStart”Start of a filter or handler block.
FilterOrHandlerStart = FilterStart | HandlerStart