Class PathExpression.AlternateExpression
Model for an alternate expression, which would be part of a larger PathExpression.
Inheritance
System.Object
PathExpression.AlternateExpression
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 AlternateExpression
Constructors
| Improve this Doc View SourceAlternateExpression(IReadOnlyList<PathExpression.PathPart>)
Initializes a new instance of the PathExpression.AlternateExpression class.
Declaration
public AlternateExpression(IReadOnlyList<PathExpression.PathPart> parts)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IReadOnlyList<PathExpression.PathPart> | parts | The path parts. |
AlternateExpression(PathExpression.PathPart[])
Initializes a new instance of the PathExpression.AlternateExpression class.
Declaration
public AlternateExpression(params PathExpression.PathPart[] parts)
Parameters
Type | Name | Description |
---|---|---|
PathExpression.PathPart[] | parts | The path parts. |
Properties
| Improve this Doc View SourceParts
Gets the parts within this expression.
Declaration
public IReadOnlyList<PathExpression.PathPart> Parts { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<PathExpression.PathPart> | The path parts within this expression. |