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.
The ServerEventHandler class represents the event handler that is used to handle server errors.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Delegate Sub ServerEventHandler ( _
sender As Object, _
e As ServerEventArgs _
)
'Usage
Dim instance As New ServerEventHandler(AddressOf HandlerMethod)
public delegate void ServerEventHandler(
Object sender,
ServerEventArgs e
)
public delegate void ServerEventHandler(
Object^ sender,
ServerEventArgs^ e
)
type ServerEventHandler =
delegate of
sender:Object *
e:ServerEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
Type: System.Object
An Object value that specifies the source of the event.
- e
Type: Microsoft.SqlServer.Management.Smo.ServerEventArgs
A Serverhttps://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemeventargsclasstopic.asp EventArgs object that contains the event data.