C# Класс NasaPicOfDay.ExceptionManager

Static class that writes Exceptions to the user's current Local Application Data folder under a folder called 'NPOD'
Показать файл Открыть проект Примеры использования класса

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

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

Write an exceptiong to the local app data folder for the current user

WriteInformation ( string message ) : void

Write a message to the local app data folder for the current user

Приватные методы

Метод Описание
WriteData ( string fullFilePath, string dataToWrite ) : void

Handles the actual writing of the data to the file system

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

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

Write an exceptiong to the local app data folder for the current user
public static WriteException ( Exception ex ) : void
ex System.Exception Exception object containing information about the error.
Результат void

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

Write a message to the local app data folder for the current user
public static WriteInformation ( string message ) : void
message string The message to write to the Debug.log file
Результат void