1 write to vertices
System.Data.Services.Client (1)
System\Data\Services\Client\Binding\BindingGraph.cs (1)
577this.vertices = new Dictionary<object, Vertex>(ReferenceEqualityComparer<object>.Instance);
16 references to vertices
System.Data.Services.Client (16)
System\Data\Services\Client\Binding\BindingGraph.cs (16)
603this.vertices.Add(item, v); 625return this.vertices.TryGetValue(item, out v); 634this.vertices.TryGetValue(item, out v); 648Vertex s = this.vertices[source]; 649Vertex t = this.vertices[target]; 665Vertex s = this.vertices[source]; 666Vertex t = this.vertices[target]; 682Edge e = new Edge { Source = this.vertices[source], Target = this.vertices[target], Label = label }; 683return this.vertices[source].OutgoingEdges.Any(r => r.Equals(e)); 693return this.vertices.Keys.Where(filter).ToList(); 702foreach (object obj in this.vertices.Keys) 707this.vertices.Clear(); 720this.vertices.Remove(v.Item); 726foreach (Vertex v in this.vertices.Values) 763return this.vertices.Values.Where(v => v.Color == VertexColor.White).ToList();