System.Configuration.MgmtConfigurationRecord.InitStreamInfoUpdates C# (CSharp) Method

InitStreamInfoUpdates() private method

private InitStreamInfoUpdates ( ) : void
return void
        private void InitStreamInfoUpdates() {
            _streamInfoUpdates = new HybridDictionary(true);
            if (ConfigStreamInfo.HasStreamInfos) {
                foreach (StreamInfo streamInfo in ConfigStreamInfo.StreamInfos.Values) {
                    _streamInfoUpdates.Add(streamInfo.StreamName, streamInfo.Clone());
                }
            }
        }