Class PathExpressionEvaluationRequest
Represents a request to evaluate a path expression. This could actually be a number of separate but very similarly-behaved expression types.
Inheritance
System.Object
PathExpressionEvaluationRequest
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.Expressions.PathExpressions
Assembly: ZptSharp.dll
Syntax
public class PathExpressionEvaluationRequest
Constructors
| Improve this Doc View SourcePathExpressionEvaluationRequest(String, ExpressionContext, RootScopeLimitation)
Initializes a new instance of the PathExpressionEvaluationRequest class.
Declaration
public PathExpressionEvaluationRequest(string expression, ExpressionContext context, RootScopeLimitation scopeLimitation = RootScopeLimitation.None)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression | Expression. |
ExpressionContext | context | Context. |
RootScopeLimitation | scopeLimitation | Scope limitation. |
Properties
| Improve this Doc View SourceExpression
Gets the expression to be evaluated.
Declaration
public string Expression { get; }
Property Value
Type | Description |
---|---|
System.String | The expression. |
ExpressionContext
Gets the expression context.
Declaration
public ExpressionContext ExpressionContext { get; }
Property Value
Type | Description |
---|---|
ExpressionContext | The expression context. |
ScopeLimitation
Gets a value which indicates how the ExpressionContext is to be limited.
Declaration
public RootScopeLimitation ScopeLimitation { get; }
Property Value
Type | Description |
---|---|
RootScopeLimitation | The scope limitation. |