Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
The SmoApplication.AnyObjectEventHandler class represents the event handler that is used to handle events from any object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Delegate Sub AnyObjectEventHandler ( _
sender As Object, _
e As SmoEventArgs _
)
'Usage
Dim instance As New AnyObjectEventHandler(AddressOf HandlerMethod)
public delegate void AnyObjectEventHandler(
Object sender,
SmoEventArgs e
)
public delegate void AnyObjectEventHandler(
Object^ sender,
SmoEventArgs^ e
)
type AnyObjectEventHandler =
delegate of
sender:Object *
e:SmoEventArgs -> 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.SmoEventArgs
A Smohttps://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemeventargsclasstopic.asp EventArgs object that contains the event data.