Class PathExpression.PathPart
Base type for a single part of a path expression.
Inheritance
System.Object
PathExpression.PathPart
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 PathPart
Constructors
| Improve this Doc View SourcePathPart(String, Boolean)
Initializes a new instance of the PathExpression.PathPart class.
Declaration
public PathPart(string name, bool isInterpolated = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the path part. |
System.Boolean | isInterpolated |
|
Properties
| Improve this Doc View SourceIsInterpolated
Gets a value indicating whether this PathExpression.PathPart represents an interpolated path name.
Declaration
public bool IsInterpolated { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Gets the name of the path part.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The name. |