Common.Logging.Configuration.LogSetting.LogSetting C# (CSharp) 메소드

LogSetting() 공개 메소드

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. ///
리턴 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