Microsoft.Common.Core.Logging.FileLogWriter.FileLogWriter C# (CSharp) Méthode

FileLogWriter() private méthode

private FileLogWriter ( string filePath ) : System
filePath string
Résultat System
        private FileLogWriter(string filePath) {
            _filePath = filePath;
            _messages = new ActionBlock<string>(new Func<string, Task>(WriteToFile));

            AppDomain.CurrentDomain.ProcessExit += OnProcessExit;
            AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
        }