In This Article

TryStatement Class

Represents a try statement.

public class TryStatement : AstNodeBase, IStatement, IAstNode
Inheritance:
object AstNodeBase object
Implements:
IStatement IAstNode

Remarks

This type was generated by the Actipro Language Designer tool v22.1.0.0 (http://www.actiprosoftware.com).

Constructors

TryStatement()

Initializes an instance of the class.

public TryStatement()

Properties

CatchClauses

Gets the catch clauses.

public IList<CatchClause> CatchClauses { get; }

Property Value

IList<CatchClause>:

The catch clauses.

FinallyBlock

Gets or sets the finally block.

public BlockStatement FinallyBlock { get; set; }

Property Value

BlockStatement:

The finally block.

HasCatchClauses

Returns whether the CatchClauses collection property contains at least one item.

public bool HasCatchClauses { get; }

Property Value

bool:

true if there is at least one item in the collection; otherwise, false.

Id

Gets the An integer value that identifies the type of AST node.

public override int Id { get; }

Property Value

int:

The An integer value that identifies the type of AST node.

TryBlock

Gets or sets the try block.

public BlockStatement TryBlock { get; set; }

Property Value

BlockStatement:

The try block.

Methods

GetChildrenEnumerator()

Retrieves an IEnumerator object that can iterate the child IAstNode objects in this node.

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

IEnumerator<IAstNode>:

An IEnumerator object that can iterate the child IAstNode objects in this node.

Inherited Members