Interface IVertex
Represents a Vertex in DSE Graph.
Inherited Members
System.IEquatable<Dse.Graph.IElement>.Equals(Dse.Graph.IElement)
Namespace: Dse.Graph
Assembly: Dse.dll
Syntax
public interface IVertex : IElement, IEquatable<IElement>
Methods
GetProperties()
Gets the properties of this element.
Declaration
IEnumerable<IVertexProperty> GetProperties()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IVertexProperty> |
GetProperties(String)
Gets the properties of this element that has the given name or an empty iterator if not found.
Declaration
IEnumerable<IVertexProperty> GetProperties(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IVertexProperty> |
GetProperty(String)
Gets the first property of this element that has the given name, or null if the property does not exist.
If more than one property of this element has the given name, it will return one of them (unspecified order).
Declaration
IVertexProperty GetProperty(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
IVertexProperty |