ScriptingErrorEventHandler Delegate

The ScriptingErrorEventHandler class represents the event handler that is used to handle scripting errors.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Delegate Sub ScriptingErrorEventHandler ( _
    sender As Object, _
    e As ScriptingErrorEventArgs _
)
'Usage
Dim instance As New ScriptingErrorEventHandler(AddressOf HandlerMethod)
public delegate void ScriptingErrorEventHandler(
    Object sender,
    ScriptingErrorEventArgs e
)
public delegate void ScriptingErrorEventHandler(
    Object^ sender, 
    ScriptingErrorEventArgs^ e
)
type ScriptingErrorEventHandler = 
    delegate of 
        sender:Object * 
        e:ScriptingErrorEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.

Parameters