Interface IExpression
Base interface for expressions.
Namespace: BayesServer
Assembly: BayesServer.dll
Syntax
public interface IExpression
Properties
ReturnType
Gets the return type of the expression.
Declaration
ExpressionReturnType ReturnType { get; }
Property Value
Type | Description |
---|---|
ExpressionReturnType |
Text
Gets or sets the expression text.
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Copy()
Creates a copy of the expression. The new expression will not have an owner.
Declaration
IExpression Copy()
Returns
Type | Description |
---|---|
IExpression | A copy of the expression. |