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 SmoApplication.ObjectAlteredEventHandler class represents the event handler that is used to handle events that occur when an object is altered.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Delegate Sub ObjectAlteredEventHandler ( _
sender As Object, _
e As ObjectAlteredEventArgs _
)
'Usage
Dim instance As New ObjectAlteredEventHandler(AddressOf HandlerMethod)
public delegate void ObjectAlteredEventHandler(
Object sender,
ObjectAlteredEventArgs e
)
public delegate void ObjectAlteredEventHandler(
Object^ sender,
ObjectAlteredEventArgs^ e
)
type ObjectAlteredEventHandler =
delegate of
sender:Object *
e:ObjectAlteredEventArgs -> 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.ObjectAlteredEventArgs
A ObjectAlteredEventArgs object that contains the event data.
Examples
See Also
Reference
Microsoft.SqlServer.Management.Smo Namespace