Vertex.GetVertexProperties
Method
Definition
Overloads
| GetVertexProperties() |
Gets all the vertex properties on the vertex. |
| GetVertexProperties(String) |
Gets the vertex properties that correspond to a given property key. |
GetVertexProperties()
Gets all the vertex properties on the vertex.
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Graphs.Elements.VertexProperty> GetVertexProperties ();
Returns
Enumerable containing all vertex properties.
GetVertexProperties(String)
Gets the vertex properties that correspond to a given property key.
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Graphs.Elements.VertexProperty> GetVertexProperties (string key);
Parameters
- key
- String
The property key to query.
Returns
Enumerable containing vertex properties matching the key.