BadgeUpdater.Update(BadgeNotification) 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 ao glifo ou número do selo.
public:
virtual void Update(BadgeNotification ^ notification) = Update;
void Update(BadgeNotification const& notification);
public void Update(BadgeNotification notification);
function update(notification)
Public Sub Update (notification As BadgeNotification)
Parâmetros
- notification
- BadgeNotification
O objeto que fornece a nova definição XML para o selo.
Exemplos
O exemplo a seguir mostra o uso de Update para enviar uma atualização de selo numérico para o bloco do aplicativo de chamada.
function sendBadgeNotification() {
var Notifications = Windows.UI.Notifications;
var badgeXml;
var badgeAttributes;
// Get an XML DOM version of a specific template by using getTemplateContent.
badgeXml = Notifications.BadgeUpdateManager.getTemplateContent(Notifications.BadgeTemplateType.badgeNumber);
badgeAttributes = badgeXml.getElementsByTagName("badge");
badgeAttributes[0].setAttribute("value", "7");
// Create a badge notification from the XML content.
var badgeNotification = new Notifications.BadgeNotification(badgeXml);
// Send the badge notification to the app's tile.
Notifications.BadgeUpdateManager.createBadgeUpdaterForApplication().update(badgeNotification);
}
Aplica-se a
Confira também
- Exemplo de blocos e selos do aplicativo
- Diretrizes e lista de verificação de blocos e notificações
- Como limpar um selo
- Como enviar um selo glifo ou numérico em uma notificação local
- Como configurar notificações periódicas para selos
- Como atualizar uma notificação por meio de notificações por push
- Esquema XML de selo
- Visão geral do selo