Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WebClient.UploadDataCompleted Event

Note: This event is new in the .NET Framework version 2.0.

Occurs when an asynchronous data-upload operation completes.

Namespace: System.Net
Assembly: System (in system.dll)

public event UploadDataCompletedEventHandler UploadDataCompleted
/** @event */
public void add_UploadDataCompleted (UploadDataCompletedEventHandler value)

/** @event */
public void remove_UploadDataCompleted (UploadDataCompletedEventHandler value)

JScript supports the use of events, but not the declaration of new ones.

This event is raised each time an asynchronous data upload operation completes. Asynchronous data uploads are started by calling the UploadDataAsync methods.

The UploadDataCompletedEventHandler is the delegate for this event. The UploadDataCompletedEventArgs 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.

public static void UploadDataInBackground3 (string address)
{
    WebClient client = new WebClient ();
    Uri uri = new Uri(address);
    string text = "Time = 12:00am temperature = 50";
    byte[] data = System.Text.Encoding.UTF8.GetBytes (text);

    client.UploadDataCompleted += new UploadDataCompletedEventHandler (UploadDataCallback3);
    client.UploadDataAsync (uri, data);
}


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

Show:
© 2017 Microsoft