FullTrustProcessLauncher.LaunchFullTrustProcessForAppAsync Method

Definition

Overloads

LaunchFullTrustProcessForAppAsync(String)

Launch the full-trust process for the specified application ID.

LaunchFullTrustProcessForAppAsync(String, String)

Launch the full-trust process for the specified application ID, with parameters.

LaunchFullTrustProcessForAppAsync(String)

Launch the full-trust process for the specified application ID.

public:
 static IAsyncAction ^ LaunchFullTrustProcessForAppAsync(Platform::String ^ fullTrustPackageRelativeAppId);
/// [Windows.Foundation.Metadata.Overload("LaunchFullTrustProcessForAppAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction LaunchFullTrustProcessForAppAsync(winrt::hstring const& fullTrustPackageRelativeAppId);
[Windows.Foundation.Metadata.Overload("LaunchFullTrustProcessForAppAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction LaunchFullTrustProcessForAppAsync(string fullTrustPackageRelativeAppId);
function launchFullTrustProcessForAppAsync(fullTrustPackageRelativeAppId)
Public Shared Function LaunchFullTrustProcessForAppAsync (fullTrustPackageRelativeAppId As String) As IAsyncAction

Parameters

fullTrustPackageRelativeAppId
String

Platform::String

winrt::hstring

The process relative application identifier of the app whose full trust process component the caller wants to launch. The full-trust process can parse this to determine which app invoked it.

Returns

The IAsyncAction to await.

Attributes

Windows requirements

App capabilities
previewHfx

See also

Applies to

LaunchFullTrustProcessForAppAsync(String, String)

Launch the full-trust process for the specified application ID, with parameters.

public:
 static IAsyncAction ^ LaunchFullTrustProcessForAppAsync(Platform::String ^ fullTrustPackageRelativeAppId, Platform::String ^ parameterGroupId);
/// [Windows.Foundation.Metadata.Overload("LaunchFullTrustProcessForAppWithParametersAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction LaunchFullTrustProcessForAppAsync(winrt::hstring const& fullTrustPackageRelativeAppId, winrt::hstring const& parameterGroupId);
[Windows.Foundation.Metadata.Overload("LaunchFullTrustProcessForAppWithParametersAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction LaunchFullTrustProcessForAppAsync(string fullTrustPackageRelativeAppId, string parameterGroupId);
function launchFullTrustProcessForAppAsync(fullTrustPackageRelativeAppId, parameterGroupId)
Public Shared Function LaunchFullTrustProcessForAppAsync (fullTrustPackageRelativeAppId As String, parameterGroupId As String) As IAsyncAction

Parameters

fullTrustPackageRelativeAppId
String

Platform::String

winrt::hstring

The process relative application identifier of the app whose full trust process component the caller wants to launch. The full-trust process can parse this to determine which app invoked it.

parameterGroupId
String

Platform::String

winrt::hstring

The parameter group ID for the parameters that will be passed to the launched process.

Returns

The IAsyncAction to await.

Attributes

Windows requirements

App capabilities
previewHfx

See also

Applies to