IgnoreSection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / IgnoreSection.cs / 1 / IgnoreSection.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Configuration { 
    using System.Xml; 

    sealed public class IgnoreSection : ConfigurationSection { 
        private static ConfigurationPropertyCollection  s_properties;

        string  _rawXml = string.Empty;
        bool    _isModified; 

        private static ConfigurationPropertyCollection EnsureStaticPropertyBag() { 
            if (s_properties == null) { 
                ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
                s_properties = properties; 
            }

            return s_properties;
        } 

        public IgnoreSection() { 
            EnsureStaticPropertyBag(); 
        }
 
        protected internal override ConfigurationPropertyCollection Properties {
            get {
                return EnsureStaticPropertyBag();
            } 
        }
 
        protected internal override bool IsModified() { 
            return _isModified;
        } 

        protected internal override void ResetModified() {
            _isModified = false;
        } 

        protected internal override void Reset(ConfigurationElement parentSection) { 
            _rawXml = string.Empty; 
            _isModified = false;
        } 

        protected internal override void DeserializeSection(XmlReader xmlReader) {
            if (!xmlReader.Read() || xmlReader.NodeType != XmlNodeType.Element) {
                throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), xmlReader); 
            }
            _rawXml = xmlReader.ReadOuterXml(); 
            _isModified = true; 
        }
 
        protected internal override string SerializeSection(ConfigurationElement parentSection, string name, ConfigurationSaveMode saveMode) {
            return _rawXml;
        }
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Configuration { 
    using System.Xml; 

    sealed public class IgnoreSection : ConfigurationSection { 
        private static ConfigurationPropertyCollection  s_properties;

        string  _rawXml = string.Empty;
        bool    _isModified; 

        private static ConfigurationPropertyCollection EnsureStaticPropertyBag() { 
            if (s_properties == null) { 
                ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
                s_properties = properties; 
            }

            return s_properties;
        } 

        public IgnoreSection() { 
            EnsureStaticPropertyBag(); 
        }
 
        protected internal override ConfigurationPropertyCollection Properties {
            get {
                return EnsureStaticPropertyBag();
            } 
        }
 
        protected internal override bool IsModified() { 
            return _isModified;
        } 

        protected internal override void ResetModified() {
            _isModified = false;
        } 

        protected internal override void Reset(ConfigurationElement parentSection) { 
            _rawXml = string.Empty; 
            _isModified = false;
        } 

        protected internal override void DeserializeSection(XmlReader xmlReader) {
            if (!xmlReader.Read() || xmlReader.NodeType != XmlNodeType.Element) {
                throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), xmlReader); 
            }
            _rawXml = xmlReader.ReadOuterXml(); 
            _isModified = true; 
        }
 
        protected internal override string SerializeSection(ConfigurationElement parentSection, string name, ConfigurationSaveMode saveMode) {
            return _rawXml;
        }
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK