System.Configuration.StreamInfo.Clone C# (CSharp) Метод

Clone() приватный Метод

private Clone ( ) : StreamInfo
Результат StreamInfo
        internal StreamInfo Clone() {
            StreamInfo clone = new StreamInfo();

            clone._sectionName  = this._sectionName;
            clone._configSource = this._configSource;
            clone._streamName   = this._streamName;
            clone._isMonitored  = this._isMonitored;
            clone._version      = this._version;

            return clone;
        }