RemoteLauncher.LaunchUriAsync Method
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
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.
Returns
The result of the launch attempt.
- Attributes
See also
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions)
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions, ValueSet)
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.
- options
- RemoteLauncherOptions
The launch options for the app.
Returns
The result of the launch attempt.
- Attributes
See also
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri)
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions, ValueSet)
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.
- 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
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri)
- LaunchUriAsync(RemoteSystemConnectionRequest, Uri, RemoteLauncherOptions)