Interface ICatchClause
Catch clause
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface ICatchClause
Properties
Body
The body of the clause
Declaration
IBlockStatement Body { get; set; }
Property Value
Type | Description |
---|---|
IBlockStatement |
Condition
Condition expression for catch clause
Declaration
IExpression Condition { get; set; }
Property Value
Type | Description |
---|---|
IExpression |
Variable
Variable declaration for catch clause
Declaration
IVariableDeclaration Variable { get; set; }
Property Value
Type | Description |
---|---|
IVariableDeclaration |