System.Net.Configuration.SettingsSection.EnsureConfigLoaded C# (CSharp) Method

EnsureConfigLoaded() static private method

static private EnsureConfigLoaded ( ) : void
return void
        static internal void EnsureConfigLoaded() {
            try {
                //AuthenticationModules section
                System.Net.AuthenticationManager.EnsureConfigLoaded();
                //Requestcachingsection section
                object o = System.Net.Cache.RequestCacheManager.IsCachingEnabled;
                //ConnectionManagement section
                o = System.Net.ServicePointManager.DefaultConnectionLimit;
                //Settings section
                o = System.Net.ServicePointManager.Expect100Continue;
                //webrequestmodules section
                o = System.Net.WebRequest.PrefixList;
                //DefaultProxy section
                o = System.Net.WebRequest.InternalDefaultWebProxy;
            }
            catch {
            }
        }