WebClient.OpenReadCompleted Event
.NET Framework 3.0
Occurs when an asynchronous operation to open a stream containing a resource completes.
Namespace: System.Net
Assembly: System (in system.dll)
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.
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.Community Additions
ADD
Show: