2 instantiations of EpmSourcePathSegment
System.Data.Services.Client (2)
parent\Server\System\Data\Services\Epm\EpmSourceTree.cs (2)
43this.root = new EpmSourcePathSegment(""); 88currentProperty = new EpmSourcePathSegment(propertyName);
10 references to EpmSourcePathSegment
System.Data.Services.Client (10)
parent\Server\System\Data\Services\Epm\EpmSourcePathSegment.cs (3)
28private List<EpmSourcePathSegment> subProperties; 39this.subProperties = new List<EpmSourcePathSegment>(); 54internal List<EpmSourcePathSegment> SubProperties
parent\Server\System\Data\Services\Epm\EpmSourceTree.cs (5)
32private readonly EpmSourcePathSegment root; 52internal EpmSourcePathSegment Root 69EpmSourcePathSegment currentProperty = this.Root; 70IList<EpmSourcePathSegment> activeSubProperties = currentProperty.SubProperties; 71EpmSourcePathSegment foundProperty = null;
System\Data\Services\Client\DataServiceContext.cs (2)
3296private void WriteContentProperties(XmlWriter writer, ClientType type, object resource, EpmSourcePathSegment currentSegment, out bool propertiesWritten) 3312EpmSourcePathSegment matchedSegment = currentSegment != null ? currentSegment.SubProperties.SingleOrDefault(s => s.PropertyName == property.PropertyName) : null;