Provides data for the ProgressChanged event.
| All Members | Constructors | Methods | Properties | ||
| Icon | Member | Description |
|---|---|---|
| ProgressChangedEventArgs(Int32, Object) |
Initializes a new instance of the ProgressChangedEventArgs class.
| |
| Equals(Object) | (Inherited from Object.) | |
| Finalize()()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetHashCode()()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType()()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
| MemberwiseClone()()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| ProgressPercentage |
Gets the asynchronous task progress percentage.
| |
| ToString()()()() | (Inherited from Object.) | |
| UserState |
Gets a unique user state.
|
The following code example shows how to use the ProgressChangedEventArgs class.
This example is part of a larger example for the BackgroundWorker class.
CopyVB.NET
CopyC#
' This event handler updates the progress bar. Private Sub backgroundWorker1_ProgressChanged( _ ByVal sender As Object, ByVal e As ProgressChangedEventArgs) _ Handles backgroundWorker1.ProgressChanged Me.progressBar1.Value = e.ProgressPercentage End Sub
// This event handler updates the progress bar. private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e) { this.progressBar1.Value = e.ProgressPercentage; }
| Object | |||
| EventArgs | |||
| ProgressChangedEventArgs | |||
| DownloadProgressChangedEventArgs | |||
| UploadProgressChangedEventArgs | |||