LauncherExtensions.TryOpenAsync(ILauncher, String) 方法

定义

首先检查提供的 URI 是否受支持,然后打开 URI 指定的应用。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<bool> ^ TryOpenAsync(Microsoft::Maui::ApplicationModel::ILauncher ^ launcher, System::String ^ uri);
public static System.Threading.Tasks.Task<bool> TryOpenAsync (this Microsoft.Maui.ApplicationModel.ILauncher launcher, string uri);
static member TryOpenAsync : Microsoft.Maui.ApplicationModel.ILauncher * string -> System.Threading.Tasks.Task<bool>
<Extension()>
Public Function TryOpenAsync (launcher As ILauncher, uri As String) As Task(Of Boolean)

参数

launcher
ILauncher

调用此方法的对象。

uri
String

要尝试打开的 URI。

返回

true 如果打开了 URI,则为 ;否则为 false

例外

格式不正确时 uri 引发。

适用于