Interface ITryCatchFinallyStatement
Try/catch/finally statement
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface ITryCatchFinallyStatement : IStatement
Properties
CatchClauses
The catch clauses
Declaration
IList<ICatchClause> CatchClauses { get; }
Property Value
| Type | Description |
|---|---|
| IList<ICatchClause> |
Fault
The unconditional catch clause body
Declaration
IBlockStatement Fault { get; set; }
Property Value
| Type | Description |
|---|---|
| IBlockStatement |
Finally
The finally body
Declaration
IBlockStatement Finally { get; set; }
Property Value
| Type | Description |
|---|---|
| IBlockStatement |
Try
The try body
Declaration
IBlockStatement Try { get; set; }
Property Value
| Type | Description |
|---|---|
| IBlockStatement |