C# 클래스 CrashReporterDotNET.ReportCrash

Set SMTP server details and receiver email fields of this class instance to send crash reports directly in your inbox.
파일 보기 프로젝트 열기: petergolde/PurplePen 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
EnableSSL System.Boolean
Exception System.Exception
FromEmail String
Password String
Port int
SmtpHost String
TextIntro string
ToEmail String
UserName String

공개 메소드들

메소드 설명
Send ( ) : void

Sends exception report directly to receiver email address provided in ToEmail.

Send ( Exception exception ) : void

Sends exception report directly to receiver email address provided in ToEmail.

비공개 메소드들

메소드 설명
ShowUI ( object crashReportDialog ) : void

메소드 상세

Send() 공개 메소드

Sends exception report directly to receiver email address provided in ToEmail.
public Send ( ) : void
리턴 void

Send() 공개 메소드

Sends exception report directly to receiver email address provided in ToEmail.
public Send ( Exception exception ) : void
exception System.Exception Exception object that contains details of the exception.
리턴 void

프로퍼티 상세

EnableSSL 공개적으로 프로퍼티

Specify whether the SMTP client uses the Secure Socket Layer (SSL) to encrypt the connection.
public Boolean,System EnableSSL
리턴 System.Boolean

Exception 공개적으로 프로퍼티

Gets or Sets exception that occur during application execution.
public Exception,System Exception
리턴 System.Exception

FromEmail 공개적으로 프로퍼티

Gets or Sets email address used by crash reporter if user don't provide her email address.
public String FromEmail
리턴 String

Password 공개적으로 프로퍼티

Gets or Sets the password used for SMTP transactions.
public String Password
리턴 String

Port 공개적으로 프로퍼티

Gets or Sets the port used for SMTP transactions.
public int Port
리턴 int

SmtpHost 공개적으로 프로퍼티

Gets or Sets name or IP address of the Host used for SMTP transactions.
public String SmtpHost
리턴 String

TextIntro 공개적으로 프로퍼티

Text for a few key parts of the UI (for localization).
public string TextIntro
리턴 string

ToEmail 공개적으로 프로퍼티

Gets or Sets email address where you want to receive crash reports.
public String ToEmail
리턴 String

UserName 공개적으로 프로퍼티

Gets or Sets the username used for SMTP transactions.
public String UserName
리턴 String