ShutdownEventHandler Delegate

Definition

Represents the method that will handle the My.Application.Shutdown event.

public delegate void ShutdownEventHandler(System::Object ^ sender, EventArgs ^ e);
public delegate void ShutdownEventHandler(object sender, EventArgs e);
type ShutdownEventHandler = delegate of obj * EventArgs -> unit
Public Delegate Sub ShutdownEventHandler(sender As Object, e As EventArgs)

Parameters

sender
Object

The source of the event.

e
EventArgs

A EventArgs object that contains the event data.

Examples

WindowsFormsApplicationBase.Shutdown

Overview of the Visual Basic Application Model

Remarks

In Visual Basic, you do not need to work with this delegate explicitly. For more information, see Shutdown.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to