다음을 통해 공유


EmailExtensions.ComposeAsync 메서드

정의

오버로드

ComposeAsync(IEmail)

사용자가 메시지를 보낼 수 있도록 기본 전자 메일 클라이언트를 엽니다.

ComposeAsync(IEmail, String, String, String[])

사용자가 제공된 제목, 본문 및 받는 사람과 메시지를 보낼 수 있도록 기본 전자 메일 클라이언트를 엽니다.

ComposeAsync(IEmail)

Source:
Email.shared.cs
Source:
Email.shared.cs

사용자가 메시지를 보낼 수 있도록 기본 전자 메일 클라이언트를 엽니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ ComposeAsync(Microsoft::Maui::ApplicationModel::Communication::IEmail ^ email);
public static System.Threading.Tasks.Task ComposeAsync (this Microsoft.Maui.ApplicationModel.Communication.IEmail email);
static member ComposeAsync : Microsoft.Maui.ApplicationModel.Communication.IEmail -> System.Threading.Tasks.Task
<Extension()>
Public Function ComposeAsync (email As IEmail) As Task

매개 변수

email
IEmail

이 메서드가 호출되는 개체입니다.

반환

Task 비동기 작업의 현재 상태 있는 개체입니다.

적용 대상

ComposeAsync(IEmail, String, String, String[])

Source:
Email.shared.cs
Source:
Email.shared.cs

사용자가 제공된 제목, 본문 및 받는 사람과 메시지를 보낼 수 있도록 기본 전자 메일 클라이언트를 엽니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ ComposeAsync(Microsoft::Maui::ApplicationModel::Communication::IEmail ^ email, System::String ^ subject, System::String ^ body, ... cli::array <System::String ^> ^ to);
public static System.Threading.Tasks.Task ComposeAsync (this Microsoft.Maui.ApplicationModel.Communication.IEmail email, string subject, string body, params string[] to);
static member ComposeAsync : Microsoft.Maui.ApplicationModel.Communication.IEmail * string * string * string[] -> System.Threading.Tasks.Task
<Extension()>
Public Function ComposeAsync (email As IEmail, subject As String, body As String, ParamArray to As String()) As Task

매개 변수

email
IEmail

이 메서드가 호출되는 개체입니다.

subject
String

메일 제목.

body
String

전자 메일 본문입니다.

to
String[]

전자 메일 받는 사람입니다.

반환

Task 비동기 작업의 현재 상태 있는 개체입니다.

적용 대상