9 writes to Parent
NuGet.Configuration (9)
Settings\Items\UnknownItem.cs (3)
34descendant.Parent = this; 55child.Parent = this; 107setting.Parent = this;
Settings\NuGetConfiguration.cs (2)
37section.Parent = this; 51Parent = this
Settings\ParsedSettingSection.cs (1)
22child.Parent = this;
Settings\SettingBase.cs (1)
96Parent = null;
Settings\SettingsGroup.cs (2)
51child.Parent = this; 124setting.Parent = this;
10 references to Parent
NuGet.Configuration (10)
Settings\Items\AddItem.cs (2)
144string.IsNullOrEmpty(value)) && Parent != null) 146Parent.Remove(this);
Settings\Items\UnknownItem.cs (2)
141if (Parent != null && IsEmpty()) 143Parent.Remove(this);
Settings\SettingsGroup.cs (2)
153if (Parent != null && IsEmpty()) 155Parent.Remove(this);
Settings\VirtualSettingSection.cs (4)
111if (currentSetting.Parent != null && currentSetting.Parent != this) 113currentSetting.Parent.Remove(currentSetting); 143elementToDelete.Parent!.Remove(elementToDelete);