共用方式為


AppActions.SetAsync 方法

定義

多載

SetAsync(AppAction[])

設定可供此應用程式使用的應用程式動作。

SetAsync(IEnumerable<AppAction>)

設定可供此應用程式使用的應用程式動作。

SetAsync(AppAction[])

來源:
AppActions.shared.cs
來源:
AppActions.shared.cs

設定可供此應用程式使用的應用程式動作。

public:
 static System::Threading::Tasks::Task ^ SetAsync(... cli::array <Microsoft::Maui::ApplicationModel::AppAction ^> ^ actions);
public static System.Threading.Tasks.Task SetAsync (params Microsoft.Maui.ApplicationModel.AppAction[] actions);
static member SetAsync : Microsoft.Maui.ApplicationModel.AppAction[] -> System.Threading.Tasks.Task
Public Shared Function SetAsync (ParamArray actions As AppAction()) As Task

參數

actions
AppAction[]

AppAction 將為此應用程式設定的物件。

傳回

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

適用於

SetAsync(IEnumerable<AppAction>)

來源:
AppActions.shared.cs
來源:
AppActions.shared.cs

設定可供此應用程式使用的應用程式動作。

public:
 static System::Threading::Tasks::Task ^ SetAsync(System::Collections::Generic::IEnumerable<Microsoft::Maui::ApplicationModel::AppAction ^> ^ actions);
public static System.Threading.Tasks.Task SetAsync (System.Collections.Generic.IEnumerable<Microsoft.Maui.ApplicationModel.AppAction> actions);
static member SetAsync : seq<Microsoft.Maui.ApplicationModel.AppAction> -> System.Threading.Tasks.Task
Public Shared Function SetAsync (actions As IEnumerable(Of AppAction)) As Task

參數

actions
IEnumerable<AppAction>

要為此應用程式設定的 AppAction 集合。

傳回

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

適用於