AppfailReporting.ConfigurationModel.ConfigurationModel C# (CSharp) Method

ConfigurationModel() private method

private ConfigurationModel ( ) : System
return System
        private ConfigurationModel()
        {
            FilteredExceptionsByType = new List<Type>();
            FilteredExceptionsByRegex = new List<Regex>();
            FilteredExceptionsByLambda = new List<Func<Exception, bool>>();
            FilteredExceptionsByHttpStatusCode = new List<HttpStatusCode>();
            FilteredExceptionByRelativeUrls = new List<string>();
            FilteredExceptionByRelativeUrlsContaining = new List<string>();
            FilteredExceptionByRelativeUrlsStartingWith = new List<string>();
            FilteredPostNamesContaining = new List<string>();
            FilteredCookieNamesContaining = new List<string>(new string[] { ".ASPXAUTH" });
            FilteredServerVariableNamesContaining = new List<string>(new string[] { "AUTH_PASSWORD", "ALL_HTTP", "ALL_RAW", "HTTP_COOKIE" });
        }