共用方式為


ShareExtensions.RequestAsync 方法

定義

多載

RequestAsync(IShare, String)

顯示操作系統的使用者介面以共享文字。

RequestAsync(IShare, String, String)

顯示操作系統使用者介面以共享文字。

RequestAsync(IShare, String)

來源:
Share.shared.cs
來源:
Share.shared.cs

顯示操作系統的使用者介面以共享文字。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ RequestAsync(Microsoft::Maui::ApplicationModel::DataTransfer::IShare ^ share, System::String ^ text);
public static System.Threading.Tasks.Task RequestAsync (this Microsoft.Maui.ApplicationModel.DataTransfer.IShare share, string text);
static member RequestAsync : Microsoft.Maui.ApplicationModel.DataTransfer.IShare * string -> System.Threading.Tasks.Task
<Extension()>
Public Function RequestAsync (share As IShare, text As String) As Task

參數

share
IShare

叫用這個方法的物件。

text
String

要共用的文字。

傳回

Task具有異步操作目前狀態的物件。

適用於

RequestAsync(IShare, String, String)

來源:
Share.shared.cs
來源:
Share.shared.cs

顯示操作系統使用者介面以共享文字。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ RequestAsync(Microsoft::Maui::ApplicationModel::DataTransfer::IShare ^ share, System::String ^ text, System::String ^ title);
public static System.Threading.Tasks.Task RequestAsync (this Microsoft.Maui.ApplicationModel.DataTransfer.IShare share, string text, string title);
static member RequestAsync : Microsoft.Maui.ApplicationModel.DataTransfer.IShare * string * string -> System.Threading.Tasks.Task
<Extension()>
Public Function RequestAsync (share As IShare, text As String, title As String) As Task

參數

share
IShare

叫用這個方法的物件。

text
String

要共用的文字。

title
String

要顯示在操作系統共享對話框上的標題。

傳回

Task具有異步操作目前狀態的物件。

適用於