TileUpdater.StartPeriodicUpdate Method

Definition

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

tileContent
Uri Uri

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

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

tileContent
Uri Uri

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

Applies to