Omikron.FactFinder.Core.Configuration.ParametersSection.ParametersSection C# (CSharp) Method

ParametersSection() static private method

static private ParametersSection ( ) : System
return System
        static ParametersSection()
        {
            log = LogManager.GetLogger(typeof(ParametersSection));

            _serverRules = new ConfigurationProperty(
                "server",
                typeof(ParameterRulesElement),
                null,
                ConfigurationPropertyOptions.IsRequired
            );

            _clientRules = new ConfigurationProperty(
                "client",
                typeof(ParameterRulesElement),
                null,
                ConfigurationPropertyOptions.IsRequired
            );

            _properties = new ConfigurationPropertyCollection()
            {
                _serverRules,
                _clientRules,
            };
        }