C# Класс Cimbalino.Phone.Toolkit.Services.EmailComposeService

Represents an implementation of the IEmailComposeService.
Наследование: IEmailComposeService
Показать файл Открыть проект

Открытые методы

Метод Описание
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