TileFlyoutUpdater.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) |
Launches a series of periodic updates for a tile flyout (mix view) notification, beginning with an immediate update when the method is called. Update content is retrieved from a specified Uniform Resource Identifier (URI). |
StartPeriodicUpdate(Uri, DateTime, PeriodicUpdateRecurrence) |
Launches a series of periodic updates for a tile flyout (mix view) notification, beginning at a specified time. Update content is retrieved from a specified Uniform Resource Identifier (URI). |
StartPeriodicUpdate(Uri, PeriodicUpdateRecurrence)
public:
virtual void StartPeriodicUpdate(Uri ^ tileFlyoutContent, PeriodicUpdateRecurrence requestedInterval) = StartPeriodicUpdate;
/// [Windows.Foundation.Metadata.Overload("StartPeriodicUpdate")]
void StartPeriodicUpdate(Uri const& tileFlyoutContent, PeriodicUpdateRecurrence const& requestedInterval);
[Windows.Foundation.Metadata.Overload("StartPeriodicUpdate")]
public void StartPeriodicUpdate(System.Uri tileFlyoutContent, PeriodicUpdateRecurrence requestedInterval);
function startPeriodicUpdate(tileFlyoutContent, requestedInterval)
Public Sub StartPeriodicUpdate (tileFlyoutContent As Uri, requestedInterval As PeriodicUpdateRecurrence)
Parameters
The Uniform Resource Identifier (URI) from which the XML content of the tile flyout update is retrieved.
- requestedInterval
- PeriodicUpdateRecurrence
The frequency with which the Uniform Resource Identifier (URI) is polled for new content, following the initial update.
- Attributes
See also
Applies to
StartPeriodicUpdate(Uri, DateTime, PeriodicUpdateRecurrence)
public:
virtual void StartPeriodicUpdate(Uri ^ tileFlyoutContent, DateTime startTime, PeriodicUpdateRecurrence requestedInterval) = StartPeriodicUpdate;
/// [Windows.Foundation.Metadata.Overload("StartPeriodicUpdateAtTime")]
void StartPeriodicUpdate(Uri const& tileFlyoutContent, DateTime const& startTime, PeriodicUpdateRecurrence const& requestedInterval);
[Windows.Foundation.Metadata.Overload("StartPeriodicUpdateAtTime")]
public void StartPeriodicUpdate(System.Uri tileFlyoutContent, System.DateTimeOffset startTime, PeriodicUpdateRecurrence requestedInterval);
function startPeriodicUpdate(tileFlyoutContent, startTime, requestedInterval)
Public Sub StartPeriodicUpdate (tileFlyoutContent As Uri, startTime As DateTimeOffset, requestedInterval As PeriodicUpdateRecurrence)
Parameters
The Uniform Resource Identifier (URI) from which the XML content of the tile flyout update is retrieved.
- startTime
- DateTime DateTimeOffset
The date and time at which the Uniform Resource Identifier (URI) should first be polled for new content.
- requestedInterval
- PeriodicUpdateRecurrence
The frequency with which the Uniform Resource Identifier (URI) is polled for new content, following the initial update at startTime.
- Attributes