TileUpdater.Update(TileNotification) Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Applies a change in content or appearance to the tile.
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)Parameters
- notification
- TileNotification
The object that supplies the new XML definition for the tile's content.
Examples
The following example shows Update used to send a notification to the app's tile.
```csharp
var tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileWide310x150Text03);
var tileAttributes = tileXml.GetElementsByTagName("text");
tileAttributes[0].AppendChild(tileXml.CreateTextNode("Hello World!"));
var tileNotification = new TileNotification(tileXml);
TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification);
```
Applies to
See also
- App tiles and badges sample
- Quickstart: Sending a tile update
- Tile and tile notification overview
- The tile template catalog
- Guidelines and checklist for tiles
- How to schedule a tile notification
- How to use the notification queue with local notifications
- How to set up periodic notifications for tiles
- Tiles XML schema