TileUpdater.Update(TileNotification) 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.
Aplica uma alteração no conteúdo ou aparência ao bloco.
public:
virtual void Update(TileNotification ^ notification) = Update;
void Update(TileNotification const& notification);
public void Update(TileNotification notification);
function update(notification)
Public Sub Update (notification As TileNotification)
Parâmetros
- notification
- TileNotification
O objeto que fornece a nova definição de XML para o conteúdo do bloco.
Exemplos
O exemplo a seguir mostra Update usado para enviar uma notificação para o bloco do aplicativo.
function sendTileTextNotification() {
var Notifications = Windows.UI.Notifications;
// Get an XML DOM version of a specific template by using getTemplateContent.
var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWide310x150Text03);
// You will need to look at the template documentation to know how many text fields a particular template has.
// Get the text attribute for this template and fill it in.
var tileAttributes = tileXml.getElementsByTagName("text");
tileAttributes[0].appendChild(tileXml.createTextNode("Hello World!"));
// Create the notification from the XML.
var tileNotification = new Notifications.TileNotification(tileXml);
// Send the notification to the calling app's tile.
Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);
}
Aplica-se a
Confira também
- Exemplo de blocos e selos do aplicativo
- Início Rápido: Enviando uma atualização de bloco
- Visão geral da notificação de bloco e bloco
- O catálogo de modelos de bloco
- Diretrizes e lista de verificação para blocos
- Como agendar uma notificação de bloco
- Como usar a fila de notificação com notificações locais
- Como configurar notificações periódicas para blocos
- Esquema XML de blocos