TileUpdateManagerForUser.CreateTileUpdaterForApplication(String) Method

Definition

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:
 virtual TileUpdater ^ CreateTileUpdaterForApplication(Platform::String ^ applicationId) = CreateTileUpdaterForApplication;
/// [Windows.Foundation.Metadata.Overload("CreateTileUpdaterForApplicationWithId")]
TileUpdater CreateTileUpdaterForApplication(winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("CreateTileUpdaterForApplicationWithId")]
public TileUpdater CreateTileUpdaterForApplication(string applicationId);
function createTileUpdaterForApplication(applicationId)
Public Function CreateTileUpdaterForApplication (applicationId As String) As TileUpdater

Parameters

applicationId
String

Platform::String

winrt::hstring

The package-relative application identifier (PRAID) of the tile. The specified app must be in the same package as the calling app. For more info on the PRAID, see the Id attribute of the Application element.

If you are hosting background task(s) in an out-of-process COM server, separate from your main application, then pass as the argument for applicationId the PRAID of the application that defines the windows.backgroundTask extension in its own package manifest.

Returns

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

Attributes

Applies to