Common.Logging.Configuration.LogSetting.LogSetting C# (CSharp) Method

LogSetting() public method

public LogSetting ( Type factoryAdapterType, NameValueCollection properties ) : System
factoryAdapterType System.Type /// The type /// that will be used for creating ///
properties NameValueCollection /// Additional user supplied properties that are passed to the /// 's constructor. ///
return System
        public LogSetting(Type factoryAdapterType, NameValueCollection properties)
        {
            ArgUtils.AssertNotNull("factoryAdapterType", factoryAdapterType);
            ArgUtils.AssertIsAssignable<ILoggerFactoryAdapter>("factoryAdapterType", factoryAdapterType
                , "Type {0} does not implement {1}", factoryAdapterType.AssemblyQualifiedName, typeof(ILoggerFactoryAdapter).FullName);
            _factoryAdapterType = factoryAdapterType;
            _properties = properties;
        }
LogSetting