Class GraphResultSet
Represents the result set containing the Graph nodes returned from a query.
Inheritance
System.Object
GraphResultSet
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: Dse.Graph
Assembly: Dse.dll
Syntax
public class GraphResultSet : IEnumerable<GraphNode>, IEnumerable
Constructors
GraphResultSet(RowSet)
Creates a new instance of GraphResultSet.
Declaration
public GraphResultSet(RowSet rs)
Parameters
Type | Name | Description |
---|---|---|
RowSet | rs |
Properties
Info
Gets the execution information for the query execution.
Declaration
public ExecutionInfo Info { get; }
Property Value
Type | Description |
---|---|
ExecutionInfo |
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GraphNode> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<GraphNode> |
To<T>()
Applies a conversion to each element of the sequence.
Declaration
public IEnumerable<T> To<T>()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> | An IEnumerable{T} that contains each element of the source sequence converted to the specified type. |
Type Parameters
Name | Description |
---|---|
T |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable