WebClient.OpenReadCompleted Event

Occurs when an asynchronous operation to open a stream containing a resource completes.

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

'Declaration
Public Event OpenReadCompleted As OpenReadCompletedEventHandler
'Usage
Dim instance As WebClient
Dim handler As OpenReadCompletedEventHandler

AddHandler instance.OpenReadCompleted, handler

/** @event */
public void add_OpenReadCompleted (OpenReadCompletedEventHandler value)

/** @event */
public void remove_OpenReadCompleted (OpenReadCompletedEventHandler value)

In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.

This event is raised each time an asynchronous operation to open a stream containing a resource completes. These operations are started by calling the OpenReadAsync methods.

The OpenReadCompletedEventHandler is the delegate for this event. The OpenReadCompletedEventArgs 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 Shared Sub OpenResourceForReading2(ByVal address As String)

    Dim client As WebClient = New WebClient()
    AddHandler client.OpenReadCompleted, AddressOf OpenReadCallback2
                Dim uri as Uri = New Uri(address)
    client.OpenReadAsync(uri)                        
End Sub


Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: