Class DomValueExpressionResult
Represents the result retrieved from IEvaluatesDomValueExpression.
Inheritance
System.Object
DomValueExpressionResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ZptSharp.Tal
Assembly: ZptSharp.Abstractions.dll
Syntax
public class DomValueExpressionResult
Constructors
| Improve this Doc View SourceDomValueExpressionResult(IList<INode>, Boolean)
Initializes a new instance of the DomValueExpressionResult class.
Declaration
public DomValueExpressionResult(IList<INode> nodes = null, bool abortAction = false)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<INode> | nodes | The nodes. |
System.Boolean | abortAction | If set to |
Properties
| Improve this Doc View SourceAbortAction
Gets or sets a value indicating whether this DomValueExpressionResult aborts the action. See also: AbortZptActionToken & DoesResultAbortTheAction(Object).
Declaration
public bool AbortAction { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Nodes
Gets the nodes resulting from the expression evaluation.
Declaration
public IReadOnlyList<INode> Nodes { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<INode> | The nodes. |