Gets or sets the refresh interval for the Layer.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public TimeSpan RefreshInterval { get; set; }
Visual Basic (Declaration)
Public Property RefreshInterval As TimeSpan

Field Value

A timespan that dictates how often the Layer automatically updates, according to changes in the underlying data.

Remarks

Use this property to specify how often the Layer automatically updates; if the data has changed since the last refresh, the Layer will be updated and redrawn in the map.

The value of this property depends on how often the underlying Layer data is likely to be updated:

You may wish to leave the value of this property as the default: zero seconds. This means that the data will not be automatically refreshed during your application session.

Alternatively, set this property to a timespan that reflects how often the data is likely to change.

See Also