StreamInfo
class StreamInfo
namespace System.Configuration
{
internal 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
};
}
}
}