3 instantiations of Edge
System.Data.Services.Client (3)
System\Data\Services\Client\Binding\BindingGraph.cs (3)
650Edge e = new Edge { Source = s, Target = t, Label = label }; 667Edge e = new Edge { Source = s, Target = t, Label = label }; 682Edge e = new Edge { Source = this.vertices[source], Target = this.vertices[target], Label = label };
17 references to Edge
System.Data.Services.Client (17)
System\Data\Services\Client\Binding\BindingGraph.cs (17)
284foreach (Edge collectionEdge in collectionVertex.OutgoingEdges.ToList()) 298Edge edge = this.graph 342foreach (Edge collectionEdge in collectionVertex.OutgoingEdges.ToList()) 611foreach (Edge e in v.OutgoingEdges.Concat(v.IncomingEdges).ToList()) 646public Edge AddEdge(object source, object target, string label) 650Edge e = new Edge { Source = s, Target = t, Label = label }; 667Edge e = new Edge { Source = s, Target = t, Label = label }; 682Edge e = new Edge { Source = this.vertices[source], Target = this.vertices[target], Label = label }; 751foreach (Edge e in current.OutgoingEdges) 771private List<Edge> incomingEdges; 774private List<Edge> outgoingEdges; 844public IList<Edge> IncomingEdges 850this.incomingEdges = new List<Edge>(); 858public IList<Edge> OutgoingEdges 864this.outgoingEdges = new List<Edge>(); 915internal sealed class Edge : IEquatable<Edge> 941public bool Equals(Edge other)