Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

ProgressTaskEventArgs.UpdateProgress Method (Int32, String)

Updates the progress.

[Visual Basic]
Overloads Public Sub UpdateProgress( _
   ByVal newValue As Int32, _
   ByVal extraData As String _
)
[C#]
public void UpdateProgress(
   int newValue,
   string extraData
);

Parameters

newValue
The new progress bar value. This value should be between Minimum and Maximum.
extraData
Additional data to be sent to the client. This data can be retrieved by calling on the client side. Usually you would call this method inside your client side ClientSideOnValueChanged handler.

Remarks

Call this function frequently inside your RunTask handler to update the progress information on the client side. In addition to pass the new progress value, you can also pass additional information to the client via extraData parameter.

See Also

ProgressTaskEventArgs Class | EO.Web Namespace | ProgressTaskEventArgs.UpdateProgress Overload List


Direct link to this topic