C# 클래스 NasaPicOfDay.ExceptionManager

Static class that writes Exceptions to the user's current Local Application Data folder under a folder called 'NPOD'
파일 보기 프로젝트 열기: BillCacy/NPOD 1 사용 예제들

공개 메소드들

메소드 설명
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