The polling interval (in milliseconds) used to raise file upload progress events.
Syntax
Visual Basic (Declaration) | |
---|
<DefaultValueAttribute()>
<DartDescriptionAttribute("The polling interval (in milliseconds) used to raise file upload progress events. This interval also determines how often ProgressPanels are updated in the browser.")>
Public Property PollingInterval As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As UploadManager
Dim value As Integer
instance.PollingInterval = value
value = instance.PollingInterval |
C# | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The polling interval (in milliseconds) used to raise file upload progress events. This interval also determines how often ProgressPanels are updated in the browser.")]
public int PollingInterval {get; set;} |
C++/CLI | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("The polling interval (in milliseconds) used to raise file upload progress events. This interval also determines how often ProgressPanels are updated in the browser.")]
public:
property int PollingInterval {
int get();
void set ( int value);
} |
Property Value
The default value is 1000.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also