This documentation is archived and is not being maintained.
CompletedEventHandler Delegate
.NET Framework 1.1
Represents the method that will handle the Completed event.
[Visual Basic] <Serializable> Public Delegate Sub CompletedEventHandler( _ ByVal sender As Object, _ ByVal e As CompletedEventArgs _ ) [C#] [Serializable] public delegate void CompletedEventHandler( object sender, CompletedEventArgs e ); [C++] [Serializable] public __gc __delegate void CompletedEventHandler( Object* sender, CompletedEventArgs* e );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your event handler must have the same parameters as the CompletedEventHandler delegate declaration.
Requirements
Namespace: System.Management
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Management (in System.Management.dll)
See Also
Show: