Show / Hide Table of Contents

    Class CilExceptionHandler

    Describes a CIL exception handler.

    Inheritance
    System.Object
    CilExceptionHandler
    CilCatchHandler
    CilFinallyHandler
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Flame.Clr.Analysis
    Assembly: Flame.Clr.dll
    Syntax
    public abstract class CilExceptionHandler

    Properties

    | Improve this Doc View Source

    HandledExceptionTypes

    Gets the list of types supported by this exception handler. This property is null if the handler catches all exceptions.

    Declaration
    public abstract IReadOnlyList<IType> HandledExceptionTypes { get; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyList<IType>

    A list of exception types or null.

    | Improve this Doc View Source

    IsCatchAll

    Tells if this exception handler will catch any exception.

    Declaration
    public bool IsCatchAll { get; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    LandingPad

    Gets the landing pad basic block to which flow is redirected when an exception is thrown.

    Declaration
    public abstract BasicBlockTag LandingPad { get; }
    Property Value
    Type Description
    BasicBlockTag

    A basic block tag.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX