Launcher.TryOpenAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
TryOpenAsync(String) |
Primeiro verifica se há suporte para o URI fornecido e, em seguida, abre o aplicativo especificado pelo URI. |
TryOpenAsync(Uri) |
Primeiro verifica se há suporte para o URI fornecido e, em seguida, abre o aplicativo especificado pelo URI. |
TryOpenAsync(String)
- Origem:
- Launcher.shared.cs
- Origem:
- Launcher.shared.cs
Primeiro verifica se há suporte para o URI fornecido e, em seguida, abre o aplicativo especificado pelo 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)
Parâmetros
- uri
- String
URI para tentar abrir.
Retornos
true
se o URI foi aberto, caso contrário false
, .
Exceções
Gerado quando uri
está malformado.
Comentários
Pode gerar System.UriFormatException se uri estiver malformado
Aplica-se a
TryOpenAsync(Uri)
- Origem:
- Launcher.shared.cs
- Origem:
- Launcher.shared.cs
Primeiro verifica se há suporte para o URI fornecido e, em seguida, abre o aplicativo especificado pelo 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)
Parâmetros
- uri
- Uri
URI para tentar abrir.
Retornos
true
se o URI foi aberto, caso contrário false
, .
Exceções
Gerado quando uri
está malformado.
Comentários
Pode gerar System.UriFormatException se uri estiver malformado