Class BaseBinaryPath
Abstract Base Class for Binary Path operators.
Implements
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)
Namespace: VDS.RDF.Query.Paths
Assembly: dotNetRDF.dll
Syntax
public abstract class BaseBinaryPath : ISparqlPath
Constructors
| Improve this Doc View SourceBaseBinaryPath(ISparqlPath, ISparqlPath)
Creates a new Binary Path.
Declaration
public BaseBinaryPath(ISparqlPath lhs, ISparqlPath rhs)
Parameters
Type | Name | Description |
---|---|---|
ISparqlPath | lhs | LHS Path. |
ISparqlPath | rhs | RHS Path. |
Fields
| Improve this Doc View Source_lhs
Parts of the Path.
Declaration
protected ISparqlPath _lhs
Field Value
Type | Description |
---|---|
ISparqlPath |
_rhs
Parts of the Path.
Declaration
protected ISparqlPath _rhs
Field Value
Type | Description |
---|---|
ISparqlPath |
Properties
| Improve this Doc View SourceLhsPath
Gets the LHS Path component.
Declaration
public ISparqlPath LhsPath { get; }
Property Value
Type | Description |
---|---|
ISparqlPath |
RhsPath
Gets the RHS Path component.
Declaration
public ISparqlPath RhsPath { get; }
Property Value
Type | Description |
---|---|
ISparqlPath |
Methods
| Improve this Doc View SourceToAlgebra(PathTransformContext)
Converts a Path into its Algebra Form.
Declaration
public abstract ISparqlAlgebra ToAlgebra(PathTransformContext context)
Parameters
Type | Name | Description |
---|---|---|
PathTransformContext | context | Path Transformation Context. |
Returns
Type | Description |
---|---|
ISparqlAlgebra |
ToString()
Gets the String representation of the Path.
Declaration
public abstract override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()