DomainDataSource.LoadInterval Property

[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]

Gets or sets the duration between two successive data loading operations in a progressive data loading scenario.

Namespace:  System.Windows.Controls
Assembly:  System.Windows.Controls.DomainServices (in System.Windows.Controls.DomainServices.dll)

Syntax

'Declaration
Public Property LoadInterval As TimeSpan
    Get
    Set
'Usage
Dim instance As DomainDataSource
Dim value As TimeSpan

value = instance.LoadInterval

instance.LoadInterval = value
public TimeSpan LoadInterval { get; set; }
public:
property TimeSpan LoadInterval {
    TimeSpan get ();
    void set (TimeSpan value);
}
member LoadInterval : TimeSpan with get, set
function get LoadInterval () : TimeSpan
function set LoadInterval (value : TimeSpan)

Property Value

Type: System.TimeSpan
The duration between two successive data loading operations in a progressive data loading scenario.

Remarks

Progressive loads allow entities to be loaded in the background when a LoadSize is specified, and PageSize is set to 0.

See Also

Reference

DomainDataSource Class

System.Windows.Controls Namespace

LoadSize

Other Resources

DomainDataSource