KaxProgressManagerRefreshPeriod Property |
Gets or sets the period (in milliseconds) of the progress data refresh.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax[PersistenceModeAttribute(PersistenceMode.Attribute)]
public int RefreshPeriod { get; set; }
<PersistenceModeAttribute(PersistenceMode.Attribute)>
Public Property RefreshPeriod As Integer
Get
Set
public:
[PersistenceModeAttribute(PersistenceMode::Attribute)]
property int RefreshPeriod {
int get ();
void set (int value);
}
[<PersistenceModeAttribute(PersistenceMode.Attribute)>]
member RefreshPeriod : int with get, set
Property Value
Type:
Int32
The period of the progress data refresh in milliseconds. The default value is
500.
RemarksThe refresh period might not be exactly the same as the value specified if
the AJAX request has not been completed before the upload. The minimum value is 50
ms.
Note: If the value is very low (50ms) both the client CPU
and server CPU load would increase because of the increased number of AJAX requests
performed.
See Also