TileUpdater.StartPeriodicUpdate 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.
Overloads
StartPeriodicUpdate(Uri, PeriodicUpdateRecurrence) |
Begins a series of timed content changes for the tile that the updater is bound to, beginning immediately. |
StartPeriodicUpdate(Uri, DateTime, PeriodicUpdateRecurrence) |
Begins a series of timed updates for the tile that the updater is bound to. Update content is retrieved from a specified Uniform Resource Identifier (URI). Updates begin at a specified time. |
StartPeriodicUpdate(Uri, PeriodicUpdateRecurrence)
Begins a series of timed content changes for the tile that the updater is bound to, beginning immediately.
public:
virtual void StartPeriodicUpdate(Uri ^ tileContent, PeriodicUpdateRecurrence requestedInterval) = StartPeriodicUpdate;
/// [Windows.Foundation.Metadata.Overload("StartPeriodicUpdate")]
void StartPeriodicUpdate(Uri const& tileContent, PeriodicUpdateRecurrence const& requestedInterval);
[Windows.Foundation.Metadata.Overload("StartPeriodicUpdate")]
public void StartPeriodicUpdate(System.Uri tileContent, PeriodicUpdateRecurrence requestedInterval);
function startPeriodicUpdate(tileContent, requestedInterval)
Public Sub StartPeriodicUpdate (tileContent As Uri, requestedInterval As PeriodicUpdateRecurrence)
Parameters
The Uniform Resource Identifier (URI) from which the XML content of the tile update will be retrieved.
- requestedInterval
- PeriodicUpdateRecurrence
The frequency with which the Uniform Resource Identifier (URI) is polled for new tile content, following the initial update at startTime.
- Attributes
See also
- StartPeriodicUpdate(Uri, DateTime, PeriodicUpdateRecurrence)
- How to set up periodic notifications for tiles
- Guidelines and checklist for periodic notifications
- 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 set up periodic notifications for tiles
- Tiles XML schema
Applies to
StartPeriodicUpdate(Uri, DateTime, PeriodicUpdateRecurrence)
Begins a series of timed updates for the tile that the updater is bound to. Update content is retrieved from a specified Uniform Resource Identifier (URI). Updates begin at a specified time.
public:
virtual void StartPeriodicUpdate(Uri ^ tileContent, DateTime startTime, PeriodicUpdateRecurrence requestedInterval) = StartPeriodicUpdate;
/// [Windows.Foundation.Metadata.Overload("StartPeriodicUpdateAtTime")]
void StartPeriodicUpdate(Uri const& tileContent, DateTime const& startTime, PeriodicUpdateRecurrence const& requestedInterval);
[Windows.Foundation.Metadata.Overload("StartPeriodicUpdateAtTime")]
public void StartPeriodicUpdate(System.Uri tileContent, System.DateTimeOffset startTime, PeriodicUpdateRecurrence requestedInterval);
function startPeriodicUpdate(tileContent, startTime, requestedInterval)
Public Sub StartPeriodicUpdate (tileContent As Uri, startTime As DateTimeOffset, requestedInterval As PeriodicUpdateRecurrence)
Parameters
The Uniform Resource Identifier (URI) from which the XML content of the tile update will be retrieved.
- startTime
- DateTime DateTimeOffset
The time at which the Uniform Resource Identifier (URI) should first be polled for new tile content.
- requestedInterval
- PeriodicUpdateRecurrence
The frequency with which the Uniform Resource Identifier (URI) is polled for new tile content, following the initial update at startTime.
- Attributes
See also
- StartPeriodicUpdate(Uri, PeriodicUpdateRecurrence)
- How to set up periodic notifications for tiles
- Guidelines and checklist for periodic notifications
- 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 set up periodic notifications for tiles
- Tiles XML schema