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