AppUriHandlerRegistration.GetAppAddedHostsAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Recupera el conjunto de hosts agregados por SetAppAddedHostsAsync para el registro especificado.
public:
virtual IAsyncOperation<IVector<AppUriHandlerHost ^> ^> ^ GetAppAddedHostsAsync() = GetAppAddedHostsAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVector<AppUriHandlerHost>> GetAppAddedHostsAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IList<AppUriHandlerHost>> GetAppAddedHostsAsync();
function getAppAddedHostsAsync()
Public Function GetAppAddedHostsAsync () As IAsyncOperation(Of IList(Of AppUriHandlerHost))
Devoluciones
El conjunto de hosts agregados por última vez por SetAppAddedHostsAsync.
- Atributos
Ejemplos
// Application logic can determine which are the new domains to register
// Here we just have a hardcoded list.
List<AppUriHandlerHost> hosts = await registration.GetAppAddedHostsAsync();
// Application logic can determine which are the new domains to register
hosts.AddRange(new[] {
new AppUriHandlerHost("www.contoso.com"),
new AppUriHandlerHost("*.example.contoso.com")
});
// Application logic can determine which domains to remove from the list
hosts.RemoveAll(_ => _.Name == "removed.contoso.com");
await registration.SetAppAddedHostsAsync(hosts);
Comentarios
Este conjunto no incluye hosts definidos en AppxManifest.