DownloadStringCompletedEventHandler Delegate

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Represents the method that will handle the DownloadStringCompleted event of a WebClient.

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

Syntax

Public Delegate Sub DownloadStringCompletedEventHandler ( _
    sender As Object, _
    e As DownloadStringCompletedEventArgs _
)
public delegate void DownloadStringCompletedEventHandler(
    Object sender,
    DownloadStringCompletedEventArgs e
)

Parameters

Remarks

When you create a DownloadStringCompletedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

Capabilities

If you use this API in your app, you must specify the following capabilities in the app manifest. Otherwise, your app might not work correctly or it might exit unexpectedly.

ID_CAP_NETWORKING

Windows Phone 8, Windows Phone OS 7.1

For more info, see App capabilities and hardware requirements for Windows Phone 8.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

System.Net Namespace