3 writes to expandPathsAsText
System.Data.Services (3)
System\Data\Services\RequestQueryProcessor.cs (3)
127this.expandPathsAsText = null; 574this.expandPathsAsText = ReadExpandOrSelect(expand, false); 578this.expandPathsAsText = new List<List<string>>();
6 references to expandPathsAsText
System.Data.Services (6)
System\Data\Services\RequestQueryProcessor.cs (6)
388Debug.Assert(this.expandPathsAsText != null, "this.expandPaths != null"); 389if (this.expandPathsAsText.Count > 0 && this.query == null) 394this.expandPaths = new List<ExpandSegmentCollection>(this.expandPathsAsText.Count); 396for (int i = this.expandPathsAsText.Count - 1; i >= 0; i--) 401List<string> path = this.expandPathsAsText[i]; 516this.expandPathsAsText.RemoveAt(i);