C# Class Yaircc.Program

Represents the application.
ファイルを表示 Open project: rastating/yaircc

Public Methods

Method Description
CurrentDomain_UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void

Handles unhandled exceptions within the application.

PostErrorLog ( string log ) : void

Post an error log to the web server.

Private Methods

Method Description
Application_ApplicationExit ( object sender, EventArgs e ) : void

Handles the ApplicationExit of System.Windows.Forms.Application.

Main ( ) : void

Method Details

CurrentDomain_UnhandledException() public static method

Handles unhandled exceptions within the application.
public static CurrentDomain_UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object The source of the event.
e System.UnhandledExceptionEventArgs The event arguments.
return void

PostErrorLog() public static method

Post an error log to the web server.
public static PostErrorLog ( string log ) : void
log string The log to post.
return void