1 instantiation of ExpandSegmentCollection
System.Data.Services (1)
System\Data\Services\RequestQueryProcessor.cs (1)
402ExpandSegmentCollection segments = new ExpandSegmentCollection(path.Count);
14 references to ExpandSegmentCollection
System.Data.Services (14)
System\Data\Services\DataService.cs (3)
186void IDataService.InternalApplyingExpansions(IQueryable queryable, ICollection<ExpandSegmentCollection> expandPaths) 195foreach (ExpandSegmentCollection collection in expandPaths) 2209public void InternalApplyingExpansions(IQueryable queryable, ICollection<ExpandSegmentCollection> expandPaths)
System\Data\Services\ExpandSegmentCollection.cs (2)
23/// <summary>Initializes a new <see cref="ExpandSegmentCollection"/> instance.</summary> 28/// <summary>Initializes a new <see cref="ExpandSegmentCollection"/> instance.</summary>
System\Data\Services\IDataService.cs (1)
93void InternalApplyingExpansions(IQueryable queryable, ICollection<ExpandSegmentCollection> expandPaths);
System\Data\Services\IExpandProvider.cs (2)
27/// <param name="expandPaths">A list of <see cref="ExpandSegmentCollection"/> paths to expand.</param> 40IEnumerable ApplyExpansions(IQueryable queryable, ICollection<ExpandSegmentCollection> expandPaths);
System\Data\Services\Providers\RootProjectionNode.cs (3)
33private readonly List<ExpandSegmentCollection> expandPaths; 59List<ExpandSegmentCollection> expandPaths, 96internal List<ExpandSegmentCollection> ExpandPaths
System\Data\Services\RequestQueryProcessor.cs (3)
61private List<ExpandSegmentCollection> expandPaths; 394this.expandPaths = new List<ExpandSegmentCollection>(this.expandPathsAsText.Count); 402ExpandSegmentCollection segments = new ExpandSegmentCollection(path.Count);