DialApp.RequestLaunchAsync(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在远程设备上启动应用。 调用此方法时,将在必要时配对 DialDevice ,提示用户允许访问设备,建立连接,在设备上验证应用是否存在,最后使用提供的 参数启动应用程序。
public:
virtual IAsyncOperation<DialAppLaunchResult> ^ RequestLaunchAsync(Platform::String ^ appArgument) = RequestLaunchAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<DialAppLaunchResult> RequestLaunchAsync(winrt::hstring const& appArgument);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<DialAppLaunchResult> RequestLaunchAsync(string appArgument);
function requestLaunchAsync(appArgument)
Public Function RequestLaunchAsync (appArgument As String) As IAsyncOperation(Of DialAppLaunchResult)
参数
- appArgument
-
String
Platform::String
winrt::hstring
可选。
返回
指示尝试启动应用的结果。
- 属性
注解
必须从 UI 线程调用此方法,否则将引发异常。 若要从另一个线程调度对 UI 线程的调用,可以使用 CoreDispatcher.RunAsync。