WebClient.UploadProgressChanged Event
Occurs when an asynchronous upload operation successfully transfers some or all of the data.
Assembly: System (in System.dll)
This event is raised each time an asynchronous upload makes progress. This event is raised when uploads are started using any of the following methods.
Method | Description |
|---|---|
Sends a Byte array to the resource, without blocking the calling thread. | |
Sends a local file to the resource, without blocking the calling thread. | |
Sends a NameValueCollection to the resource and returns a Byte array containing any response, without blocking the calling thread. |
The UploadProgressChangedEventHandler is the delegate for this event. The UploadProgressChangedEventArgs class provides the event handler with event data.
For more information about handling events, see Consuming Events.
The following code example demonstrates setting an event handler for this event.
' Sample call: UploadFileInBackground2("http:' www.contoso.com/fileUpload.aspx", "data.txt") Public Shared Sub UploadFileInBackground2(ByVal address As String, ByVal fileName As String) Dim client As WebClient = New WebClient() Dim uri as Uri = New Uri(address) AddHandler client.UploadFileCompleted, AddressOf UploadFileCallback2 ' Specify a progress notification handler. AddHandler client.UploadProgressChanged, AddressOf UploadProgressCallback client.UploadFileAsync(uri, "POST", fileName) Console.WriteLine("File upload started.") End Sub
// Sample call: UploadFileInBackground2("http://www.contoso.com/fileUpload.aspx", "data.txt")
void UploadFileInBackground2 (String* address, String* fileName)
{
WebClient* client = new WebClient ();
client->UploadFileCompleted += new UploadFileCompletedEventHandler (UploadFileCallback2);
// Specify a progress notification handler.
client->UploadProgressChanged += new UploadProgressEventHandler(UploadProgressCallback);
client->UploadFileAsync (address, S"POST", fileName);
Console::WriteLine (S"File upload started.");
}
The following code example shows an implementation of a handler for this event.
Private Shared Sub UploadProgressCallback(ByVal sender As Object, ByVal e As UploadProgressChangedEventArgs) ' Displays the operation identifier, and the transfer progress. Console.WriteLine("{0} uploaded {1} of {2} bytes. {3} % complete...", _ CStr(e.UserState), e.BytesSent, e.TotalBytesToSend, e.ProgressPercentage) End Sub Private Shared Sub DownloadProgressCallback(ByVal sender As Object, ByVal e As DownloadProgressChangedEventArgs) ' Displays the operation identifier, and the transfer progress. Console.WriteLine("0} downloaded 1} of 2} bytes. 3} % complete...", _ CStr(e.UserState), e.BytesReceived, e.TotalBytesToReceive, e.ProgressPercentage) End Sub
void UploadProgressCallback(Object* /*sender*/, UploadProgressEventArgs* e)
{
// Displays the operation identifier, and the transfer progress.
Console::WriteLine(S"{0} transferred {1} of {2} bytes. {3} % complete...",
dynamic_cast<String*>(e->UserToken),
__box(e->BytesSent),
__box(e->TotalBytesToSend),
__box(e->ProgressPercentage));
}
void DownloadProgressCallback(Object* /*sender*/, DownloadProgressEventArgs* e)
{
// Displays the operation identifier, and the transfer progress.
Console::WriteLine(S"{0} transferred {1} of {2} bytes. {3} % complete...",
dynamic_cast<String*>(e->UserToken),
__box(e->BytesReceived),
__box(e->TotalBytesToReceive),
__box(e->ProgressPercentage));
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.