Share via


LauncherExtensions.TryOpenAsync(ILauncher, String) Method

Definition

First checks if the provided URI is supported, then opens the app specified by the 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)

Parameters

launcher
ILauncher

The object this method is invoked on.

uri
String

URI to try and open.

Returns

true if the URI was opened, otherwise false.

Exceptions

Thrown when uri is malformed.

Applies to