The delegate for status events.

Namespace:  RedGate.SQL.Shared
Assembly:  RedGate.SQL.Shared (in RedGate.SQL.Shared.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub StatusEventHandler ( _
	sender As Object, _
	e As StatusEventArgs _
)
C#
public delegate void StatusEventHandler(
	Object sender,
	StatusEventArgs e
)
Visual C++
public delegate void StatusEventHandler(
	Object^ sender, 
	StatusEventArgs^ e
)

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: RedGate.SQL.Shared..::.StatusEventArgs
A StatusEventArgs that contains the event data.

See Also