Esempio n. 1
0
            public override object GetProperty(string key)
            {
                ElementContract.ValidateGetProperty(key);
                object result        = null;
                var    chachedVertex = _batchInnerTinkerGrapĥ.GetCachedVertex(_externalId);

                if (chachedVertex != null)
                {
                    result = chachedVertex.GetProperty(key);
                }
                return(result);
            }
 public override object GetProperty(string key)
 {
     ElementContract.ValidateGetProperty(key);
     return(Element.GetProperty(key));
 }
Esempio n. 3
0
 public override object GetProperty(string key)
 {
     ElementContract.ValidateGetProperty(key);
     return(key.Equals(PartitionInnerTinkerGrapĥ.PartitionKey) ? null : Element.GetProperty(key));
 }
Esempio n. 4
0
            public override object GetProperty(string key)
            {
                ElementContract.ValidateGetProperty(key);

                return(GetWrappedEdge().GetProperty(key));
            }