ErrorRuntimeConfig.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / ErrorRuntimeConfig.cs / 1305376 / ErrorRuntimeConfig.cs

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

namespace System.Web.Configuration { 
 
    using System.Configuration;
    using System.Configuration.Internal; 
    using System.Web.Util;

    //
    // Any attempt to access any section will result in an exception. 
    //
    internal class ErrorRuntimeConfig : RuntimeConfig { 
        internal ErrorRuntimeConfig() : base(new ErrorConfigRecord(), false) {} 

        protected override object GetSectionObject(string sectionName) { 
            throw new ConfigurationErrorsException();
        }

        // 
        // Any attempt to access the record will result in an exception.
        // 
        private class ErrorConfigRecord : IInternalConfigRecord { 
            internal ErrorConfigRecord() {
            } 

            string  IInternalConfigRecord.ConfigPath {
                get {
                    throw new ConfigurationErrorsException(); 
                }
            } 
 
            string  IInternalConfigRecord.StreamName {
                get { 
                    throw new ConfigurationErrorsException();
                }
            }
 
            bool    IInternalConfigRecord.HasInitErrors {
                get { 
                    return true; 
                }
            } 

            void    IInternalConfigRecord.ThrowIfInitErrors() {
                throw new ConfigurationErrorsException();
            } 

            object  IInternalConfigRecord.GetSection(string configKey) { 
                throw new ConfigurationErrorsException(); 
            }
 
            object  IInternalConfigRecord.GetLkgSection(string configKey) {
                throw new ConfigurationErrorsException();
            }
 
            void    IInternalConfigRecord.RefreshSection(string configKey) {
                throw new ConfigurationErrorsException(); 
            } 

            void    IInternalConfigRecord.Remove() { 
                throw new ConfigurationErrorsException();
            }
        }
    } 
}

// 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