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