Launcher.TryOpenAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
TryOpenAsync(String) |
Vérifie d’abord si l’URI fourni est pris en charge, puis ouvre l’application spécifiée par l’URI. |
TryOpenAsync(Uri) |
Vérifie d’abord si l’URI fourni est pris en charge, puis ouvre l’application spécifiée par l’URI. |
TryOpenAsync(String)
- Source:
- Launcher.shared.cs
- Source:
- Launcher.shared.cs
Vérifie d’abord si l’URI fourni est pris en charge, puis ouvre l’application spécifiée par l’URI.
public:
static System::Threading::Tasks::Task<bool> ^ TryOpenAsync(System::String ^ uri);
public static System.Threading.Tasks.Task<bool> TryOpenAsync (string uri);
static member TryOpenAsync : string -> System.Threading.Tasks.Task<bool>
Public Shared Function TryOpenAsync (uri As String) As Task(Of Boolean)
Paramètres
- uri
- String
URI à essayer et à ouvrir.
Retours
true
si l’URI a été ouvert, sinon false
.
Exceptions
Levée quand uri
est malformé.
Remarques
Peut lever System.UriFormatException si l’URI est mal formé
S’applique à
TryOpenAsync(Uri)
- Source:
- Launcher.shared.cs
- Source:
- Launcher.shared.cs
Vérifie d’abord si l’URI fourni est pris en charge, puis ouvre l’application spécifiée par l’URI.
public:
static System::Threading::Tasks::Task<bool> ^ TryOpenAsync(Uri ^ uri);
public static System.Threading.Tasks.Task<bool> TryOpenAsync (Uri uri);
static member TryOpenAsync : Uri -> System.Threading.Tasks.Task<bool>
Public Shared Function TryOpenAsync (uri As Uri) As Task(Of Boolean)
Paramètres
- uri
- Uri
URI à essayer et à ouvrir.
Retours
true
si l’URI a été ouvert, sinon false
.
Exceptions
Levée quand uri
est malformé.
Remarques
Peut lever System.UriFormatException si l’URI est mal formé