Interface IElement
Represents an element in DSE Graph.
Inherited Members
      System.IEquatable<Dse.Graph.IElement>.Equals(Dse.Graph.IElement)
    
  Namespace: Dse.Graph
Assembly: Dse.dll
Syntax
public interface IElement : IEquatable<IElement>
  Properties
Id
Gets the identifier as an instance of IGraphNode.
Declaration
IGraphNode Id { get; }
  Property Value
| Type | Description | 
|---|---|
| IGraphNode | 
Label
Gets the label of the element.
Declaration
string Label { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Methods
GetProperties()
Gets all properties of an element.
Declaration
IEnumerable<IProperty> GetProperties()
  Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<IProperty> | 
GetProperty(String)
Gets a property by name.
Declaration
IProperty GetProperty(string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | 
Returns
| Type | Description | 
|---|---|
| IProperty |