Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the method that handles the event for an action.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
public delegate void ActionEventHandler(
object sender,
ActionEventArgs e
)
public delegate void ActionEventHandler(
Object^ sender,
ActionEventArgs^ e
)
type ActionEventHandler =
delegate of
sender:Object *
e:ActionEventArgs -> unit
Public Delegate Sub ActionEventHandler (
sender As Object,
e As ActionEventArgs
)
Parameters
sender
Type: System.ObjectThe source of the event.
e
Type: Microsoft.ManagementConsole.ActionEventArgsAn ActionEventArgs object that contains the event data.
See Also
Microsoft.ManagementConsole Namespace
Return to top