<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.1" />

StreamInfo

sealed class StreamInfo
namespace System.Configuration { internal sealed class StreamInfo { internal string SectionName { get; set; } internal string ConfigSource { get; set; } internal string StreamName { get; set; } internal bool IsMonitored { get; set; } internal object Version { get; set; } internal StreamInfo(string sectionName, string configSource, string streamName) { SectionName = sectionName; ConfigSource = configSource; StreamName = streamName; } private StreamInfo() { } internal StreamInfo Clone() { return new StreamInfo { SectionName = SectionName, ConfigSource = ConfigSource, StreamName = StreamName, IsMonitored = IsMonitored, Version = Version }; } } }