Catel.Logging.FileLogListener.FileLogListener C# (CSharp) Метод

FileLogListener() публичный Метод

Initializes a new instance of the FileLogListener class.
The is null or whitespace.
public FileLogListener ( string filePath, int maxSizeInKiloBytes, Assembly assembly = null ) : System
filePath string The file path.
maxSizeInKiloBytes int The max size in kilo bytes.
assembly Assembly The assembly to load the product info from. If null, the entry assembly will be used.
Результат System
        public FileLogListener(string filePath, int maxSizeInKiloBytes, Assembly assembly = null)
        {
            Argument.IsNotNullOrWhitespace(() => filePath);

            Initialize(false, assembly);

            FilePath = filePath;
            MaxSizeInKiloBytes = maxSizeInKiloBytes;
        }
#endregion

Same methods

FileLogListener::FileLogListener ( Assembly assembly = null ) : System