2 instantiations of ConfigSectionClone
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\ConfigSectionClone.cs (1)
19Children = children.ToDictionary(child => child.Key, child => new ConfigSectionClone(child));
Internal\ConfigurationReader.cs (1)
288_configSectionClone = new ConfigSectionClone(configSection);
8 references to ConfigSectionClone
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\ConfigSectionClone.cs (7)
24public Dictionary<string, ConfigSectionClone> Children { get; } 28if (!(obj is ConfigSectionClone other)) 40if (!other.Children.TryGetValue(kvp.Key, out var child)) 56public static bool operator ==(ConfigSectionClone lhs, ConfigSectionClone rhs) => lhs is null ? rhs is null : lhs.Equals(rhs); 57public static bool operator !=(ConfigSectionClone lhs, ConfigSectionClone rhs) => !(lhs == rhs);
Internal\ConfigurationReader.cs (1)
270private readonly ConfigSectionClone _configSectionClone;