Share via


SfcApplication.SfcObjectDroppedEventHandler Delegate

Represents the method that will handle the ObjectDropped event. Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

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

Parameters