2 instantiations of EpmNullValuedPropertyNode
System.Data.Services (2)
System\Data\Services\Epm\EpmContentSerializer.cs (2)
132this.root = new EpmNullValuedPropertyNode { Name = null }; 162EpmNullValuedPropertyNode newNode = new EpmNullValuedPropertyNode { Name = segment };
9 references to EpmNullValuedPropertyNode
System.Data.Services (9)
System\Data\Services\Epm\EpmContentSerializer.cs (9)
119private EpmNullValuedPropertyNode root; 142EpmNullValuedPropertyNode current = this.root; 152EpmNullValuedPropertyNode child = current.Children.FirstOrDefault(c => c.Name == segment); 162EpmNullValuedPropertyNode newNode = new EpmNullValuedPropertyNode { Name = segment }; 258private void AddNullValuesToContent(EpmNullValuedPropertyNode currentRoot, DictionaryContent currentContent) 260foreach (EpmNullValuedPropertyNode node in currentRoot.Children) 324private List<EpmNullValuedPropertyNode> children; 348internal ICollection<EpmNullValuedPropertyNode> Children 354this.children = new List<EpmNullValuedPropertyNode>();