RemoteLauncher.LaunchUriAsync Method

Definition

Overloads

LaunchUriAsync(RemoteSystemConnectionRequest, Uri)

Starts the default app associated with the URI scheme name for the specified URI on a remote device.

LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions)

Starts the default app associated with the URI scheme name for the specified URI on a remote device, using the specified options.

LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions, ValueSet)

Starts the default app associated with the URI scheme name for the specified URI on a remote device, using the specified options and input data.

LaunchUriAsync(RemoteSystemConnectionRequest, Uri)

Starts the default app associated with the URI scheme name for the specified URI on a remote device.

public:
 static IAsyncOperation<RemoteLaunchUriStatus> ^ LaunchUriAsync(RemoteSystemConnectionRequest ^ remoteSystemConnectionRequest, Uri ^ uri);
/// [Windows.Foundation.Metadata.Overload("LaunchUriAsync")]
 static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest const& remoteSystemConnectionRequest, Uri const& uri);
[Windows.Foundation.Metadata.Overload("LaunchUriAsync")]
public static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest remoteSystemConnectionRequest, System.Uri uri);
function launchUriAsync(remoteSystemConnectionRequest, uri)
Public Shared Function LaunchUriAsync (remoteSystemConnectionRequest As RemoteSystemConnectionRequest, uri As Uri) As IAsyncOperation(Of RemoteLaunchUriStatus)

Parameters

remoteSystemConnectionRequest
RemoteSystemConnectionRequest

Specifies the remote system (device) to connect to.

uri
Uri Uri

The URI scheme.

Returns

The result of the launch attempt.

Attributes

See also

Applies to

LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions)

Starts the default app associated with the URI scheme name for the specified URI on a remote device, using the specified options.

public:
 static IAsyncOperation<RemoteLaunchUriStatus> ^ LaunchUriAsync(RemoteSystemConnectionRequest ^ remoteSystemConnectionRequest, Uri ^ uri, RemoteLauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("LaunchUriWithOptionsAsync")]
 static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest const& remoteSystemConnectionRequest, Uri const& uri, RemoteLauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("LaunchUriWithOptionsAsync")]
public static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest remoteSystemConnectionRequest, System.Uri uri, RemoteLauncherOptions options);
function launchUriAsync(remoteSystemConnectionRequest, uri, options)
Public Shared Function LaunchUriAsync (remoteSystemConnectionRequest As RemoteSystemConnectionRequest, uri As Uri, options As RemoteLauncherOptions) As IAsyncOperation(Of RemoteLaunchUriStatus)

Parameters

remoteSystemConnectionRequest
RemoteSystemConnectionRequest

Specifies the remote system (device) to connect to.

uri
Uri Uri

The Uri scheme.

options
RemoteLauncherOptions

The launch options for the app.

Returns

The result of the launch attempt.

Attributes

See also

Applies to

LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions, ValueSet)

Starts the default app associated with the URI scheme name for the specified URI on a remote device, using the specified options and input data.

public:
 static IAsyncOperation<RemoteLaunchUriStatus> ^ LaunchUriAsync(RemoteSystemConnectionRequest ^ remoteSystemConnectionRequest, Uri ^ uri, RemoteLauncherOptions ^ options, ValueSet ^ inputData);
/// [Windows.Foundation.Metadata.Overload("LaunchUriWithDataAsync")]
 static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest const& remoteSystemConnectionRequest, Uri const& uri, RemoteLauncherOptions const& options, ValueSet const& inputData);
[Windows.Foundation.Metadata.Overload("LaunchUriWithDataAsync")]
public static IAsyncOperation<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest remoteSystemConnectionRequest, System.Uri uri, RemoteLauncherOptions options, ValueSet inputData);
function launchUriAsync(remoteSystemConnectionRequest, uri, options, inputData)
Public Shared Function LaunchUriAsync (remoteSystemConnectionRequest As RemoteSystemConnectionRequest, uri As Uri, options As RemoteLauncherOptions, inputData As ValueSet) As IAsyncOperation(Of RemoteLaunchUriStatus)

Parameters

remoteSystemConnectionRequest
RemoteSystemConnectionRequest

Specifies the remote system (device) to connect to.

uri
Uri Uri

The Uri scheme.

options
RemoteLauncherOptions

The launch options for the app.

inputData
ValueSet

The input data for the app.

Returns

The result of the launch attempt.

Attributes

See also

Applies to