TileUpdateManagerForUser TileUpdateManagerForUser TileUpdateManagerForUser TileUpdateManagerForUser Class

Definition

Creates TileUpdater objects used to change and update Start menu tiles for a specific user. This class also provides access to the XML content of the system-provided tile templates so that you can customize that content for use in updating your tiles.

public : sealed class TileUpdateManagerForUser : ITileUpdateManagerForUserpublic sealed class TileUpdateManagerForUser : ITileUpdateManagerForUserPublic NotInheritable Class TileUpdateManagerForUser Implements ITileUpdateManagerForUser// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v3)

Properties

User User User User

Gets the user that receives the toast notifications created by this object.

public : User User { get; }public User User { get; }Public ReadOnly Property User As User// You can use this property in JavaScript.
Value
User User User User

The user that receives the toast notifications created by this object.

Methods

CreateTileUpdaterForApplication(String) CreateTileUpdaterForApplication(String) CreateTileUpdaterForApplication(String) CreateTileUpdaterForApplication(String)

Creates a new TileUpdater for a tile for the bound user. The tile can belong to the calling app or any other app in the same package. The TileUpdater lets a developer change the appearance of that tile.

public : TileUpdater CreateTileUpdaterForApplication(PlatForm::String applicationId)public TileUpdater CreateTileUpdaterForApplication(String applicationId)Public Function CreateTileUpdaterForApplication(applicationId As String) As TileUpdater// You can use this method in JavaScript.
Parameters
applicationId
PlatForm::String String String String

The Package Relative Application ID (PRAID) of the tile.

Returns

The object you will use to send changes to the tile identified by applicationId.

CreateTileUpdaterForApplicationForUser() CreateTileUpdaterForApplicationForUser() CreateTileUpdaterForApplicationForUser() CreateTileUpdaterForApplicationForUser()

Creates and initializes a new instance of the TileUpdater, which lets you change the appearance of the calling app's tile for the bound user.

public : TileUpdater CreateTileUpdaterForApplicationForUser()public TileUpdater CreateTileUpdaterForApplicationForUser()Public Function CreateTileUpdaterForApplicationForUser() As TileUpdater// You can use this method in JavaScript.
Returns

The object you will use to send changes to the app's tile for the current user.

CreateTileUpdaterForSecondaryTile(String) CreateTileUpdaterForSecondaryTile(String) CreateTileUpdaterForSecondaryTile(String) CreateTileUpdaterForSecondaryTile(String)

Creates a new TileUpdater, which enables you to change the appearance of a secondary tile for the bound user. The tile can belong to the calling app or any other app in the same package.

public : TileUpdater CreateTileUpdaterForSecondaryTile(PlatForm::String tileId)public TileUpdater CreateTileUpdaterForSecondaryTile(String tileId)Public Function CreateTileUpdaterForSecondaryTile(tileId As String) As TileUpdater// You can use this method in JavaScript.
Parameters
tileId
PlatForm::String String String String

A unique ID for the tile.

Returns

The object you will use to send updates to the tile identified by tileID.