C# 클래스 Updater.UpdateLogger

파일 보기 프로젝트 열기: BillCacy/NPOD 1 사용 예제들

공개 메소드들

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