Compartir a través de


Delegado ScriptingErrorEventHandler

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

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
Public Delegate Sub ScriptingErrorEventHandler ( _
    sender As Object, _
    e As ScriptingErrorEventArgs _
)
'Uso
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 admite el uso de delegados, pero no la declaración de otros nuevos.

Parámetros