internal static RequestCachingSectionInternal GetSection()
        {
            RequestCachingSectionInternal internal2;

            lock (ClassSyncObject)
            {
                RequestCachingSection section = System.Configuration.PrivilegedConfigurationManager.GetSection(ConfigurationStrings.RequestCachingSectionPath) as RequestCachingSection;
                if (section == null)
                {
                    internal2 = null;
                }
                else
                {
                    try
                    {
                        internal2 = new RequestCachingSectionInternal(section);
                    }
                    catch (Exception exception)
                    {
                        if (NclUtilities.IsFatal(exception))
                        {
                            throw;
                        }
                        throw new ConfigurationErrorsException(System.SR.GetString("net_config_requestcaching"), exception);
                    }
                }
            }
            return(internal2);
        }