Click or drag to resize

IVertexProperty Interface

Represents a vertex property in DSE Graph.

Vertex properties are special because they are also elements, and thus have an identifier; they can also contain properties of their own (usually referred to as "meta properties").

Namespace:  Dse.Graph
Assembly:  Dse (in Dse.dll) Version: 2.6.0
Syntax
C#
public interface IVertexProperty : IProperty, 
	IEquatable<IProperty>, IElement, IEquatable<IElement>, 
	IEquatable<IVertexProperty>

The IVertexProperty type exposes the following members.

Properties
  NameDescription
Public propertyId
Gets the identifier as an instance of IGraphNode.
(Inherited from IElement.)
Public propertyLabel
Gets the label of the element.
(Inherited from IElement.)
Public propertyName
Gets the property name.
(Inherited from IProperty.)
Public propertyValue
Gets the property value.
(Inherited from IProperty.)
Top
Methods
  NameDescription
Public methodEquals(T)
Indicates whether the current object is equal to another object of the same type.
(Inherited from IEquatableIElement.)
Public methodEquals(T) (Inherited from IEquatableIProperty.)
Public methodEquals(T) (Inherited from IEquatableIVertexProperty.)
Public methodGetProperties
Gets all properties of an element.
(Inherited from IElement.)
Public methodGetProperty
Gets a property by name.
(Inherited from IElement.)
Top
See Also