ConfigsHelper.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ConfigsHelper.cs / 1 / ConfigsHelper.cs

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

namespace System.Web.Configuration 
{ 
    using System.Configuration;
    using System.Configuration.Provider; 

    internal class ConfigsHelper {
        internal static void GetRegistryStringAttribute(ref string val, ConfigurationElement config, string propName) {
            if (HandlerBase.CheckAndReadRegistryValue(ref val, false) == false) { 
                throw new ConfigurationErrorsException(
                        SR.GetString(SR.Invalid_registry_config), 
                        config.ElementInformation.Properties[propName].Source, config.ElementInformation.Properties[propName].LineNumber); 
            }
        } 
    }
}


                        

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