Show / Hide Table of Contents

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 Source

PathPart(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

true if this path part represents an interpolated name; false otherwise.

Properties

| Improve this Doc View Source

IsInterpolated

Gets a value indicating whether this PathExpression.PathPart represents an interpolated path name.

Declaration
public bool IsInterpolated { get; }
Property Value
Type Description
System.Boolean

true if this part is interpolated; otherwise, false.

| Improve this Doc View Source

Name

Gets the name of the path part.

Declaration
public string Name { get; }
Property Value
Type Description
System.String

The name.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX