/// <summary> /// Return all the keys associated with the vertex. /// </summary> /// <returns>the set of all string keys associated with the vertex</returns> public override IEnumerable <string> GetPropertyKeys() { foreach (string key in m_vertexType.GetPropertyKeys()) { if (GetProperty(key) != null) { yield return(key); } } }