C# Класс Updater.UpdateLogger

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
WriteError ( Exception ex ) : void

Writes the exception information to the file system.

WriteError ( string filePath, Exception ex ) : void

Writes the exception information to the specified location in the file system.

WriteInformation ( string filePath, string message ) : void

Writes the information to the specified location in the file system.

Описание методов

WriteError() публичный статический Метод

Writes the exception information to the file system.
public static WriteError ( Exception ex ) : void
ex System.Exception Exception to write to the file system
Результат void

WriteError() публичный статический Метод

Writes the exception information to the specified location in the file system.
public static WriteError ( string filePath, Exception ex ) : void
filePath string Path on the system to write the file to
ex System.Exception Exception to write to the file
Результат void

WriteInformation() публичный статический Метод

Writes the information to the specified location in the file system.
public static WriteInformation ( string filePath, string message ) : void
filePath string Path on the system to write the file to
message string Information to write to the file
Результат void