C# 클래스 Cimbalino.Phone.Toolkit.Services.EmailComposeService

Represents an implementation of the IEmailComposeService.
상속: IEmailComposeService
파일 보기 프로젝트 열기: Cimbalino/Cimbalino-Phone-Toolkit

공개 메소드들

메소드 설명
Show ( string subject, string body ) : void

Shows the e-mail compose screen with the specified subject and message body.

Show ( string to, string subject, string body ) : void

Shows the e-mail compose screen with the specified recipients, subject and message body.

Show ( string to, string cc, string bcc, string subject, string body ) : void

Shows the e-mail compose screen with the specified recipients, CC recipients, BCC recipients, subject and message body.

메소드 상세

Show() 공개 메소드

Shows the e-mail compose screen with the specified subject and message body.
public Show ( string subject, string body ) : void
subject string The e-mail subject.
body string The e-mail message body.
리턴 void

Show() 공개 메소드

Shows the e-mail compose screen with the specified recipients, subject and message body.
public Show ( string to, string subject, string body ) : void
to string The e-mail recipients.
subject string The e-mail subject.
body string The e-mail message body.
리턴 void

Show() 공개 메소드

Shows the e-mail compose screen with the specified recipients, CC recipients, BCC recipients, subject and message body.
public Show ( string to, string cc, string bcc, string subject, string body ) : void
to string The e-mail recipients.
cc string The e-mail CC recipients.
bcc string The e-mail BCC recipients.
subject string The e-mail subject.
body string The e-mail message body.
리턴 void