Class NegatedSet
Represents a Negated Property Set.
Inheritance
System.Object
NegatedSet
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Paths
Assembly: dotNetRdf.dll
Syntax
public class NegatedSet : ISparqlPath
Constructors
| Improve this Doc View SourceNegatedSet(IEnumerable<Property>, IEnumerable<Property>)
Creates a new Negated Property Set.
Declaration
public NegatedSet(IEnumerable<Property> properties, IEnumerable<Property> inverseProperties)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IEnumerable<T><Property> | properties | Negated Properties. |
| System.Collections.Generic.IEnumerable<T><Property> | inverseProperties | Inverse Negated Properties. |
Properties
| Improve this Doc View SourceInverseProperties
Gets the Inverse Negated Properties.
Declaration
public IEnumerable<Property> InverseProperties { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<T><Property> |
Properties
Gets the Negated Properties.
Declaration
public IEnumerable<Property> Properties { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<T><Property> |
Methods
| Improve this Doc View SourceToAlgebra(PathTransformContext)
Converts a Path into its Algebra Form.
Declaration
public 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 override string ToString()
Returns
| Type | Description |
|---|---|
| string |
Overrides
object.ToString()