C# Class Updater.UpdateLogger

Afficher le fichier Open project: BillCacy/NPOD Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

WriteError() public static méthode

Writes the exception information to the file system.
public static WriteError ( Exception ex ) : void
ex System.Exception Exception to write to the file system
Résultat void

WriteError() public static méthode

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
Résultat void

WriteInformation() public static méthode

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
Résultat void