ExecuteAppFunctionRequest.Builder Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| ExecuteAppFunctionRequest.Builder(AppFunctionName) |
Constructs a |
| ExecuteAppFunctionRequest.Builder(String, String) |
Constructs a |
ExecuteAppFunctionRequest.Builder(AppFunctionName)
Constructs a ExecuteAppFunctionRequest.Builder.
[Android.Runtime.Register(".ctor", "(Landroid/app/appfunctions/AppFunctionName;)V", "", ApiSince=37)]
public Builder(Android.App.AppFunctions.AppFunctionName appFunctionName);
[<Android.Runtime.Register(".ctor", "(Landroid/app/appfunctions/AppFunctionName;)V", "", ApiSince=37)>]
new Android.App.AppFunctions.ExecuteAppFunctionRequest.Builder : Android.App.AppFunctions.AppFunctionName -> Android.App.AppFunctions.ExecuteAppFunctionRequest.Builder
Parameters
- appFunctionName
- AppFunctionName
The AppFunctionName of the target app function. See AppFunctionMetadata#getName for how to determine this value.
- Attributes
Remarks
Constructs a ExecuteAppFunctionRequest.Builder.
Android reference for android.app.appfunctions.ExecuteAppFunctionRequest.Builder.Builder.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
ExecuteAppFunctionRequest.Builder(String, String)
Constructs a ExecuteAppFunctionRequest.Builder.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=36)]
public Builder(string targetPackageName, string functionIdentifier);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=36)>]
new Android.App.AppFunctions.ExecuteAppFunctionRequest.Builder : string * string -> Android.App.AppFunctions.ExecuteAppFunctionRequest.Builder
Parameters
- targetPackageName
- String
The package name of the app that hosts the app function. See
AppFunctionMetadata#getName for how to determine this value.
- functionIdentifier
- String
The unique identifier for the app function to be executed. See
AppFunctionMetadata#getName for how to determine this value.
- Attributes
Remarks
Creates a new instance of this builder class.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.