DataObjectChangedEventHandler Delegate
Represents the method that handles the ObjectChanged event on the DataObjectChangeEvents class.
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public Delegate Sub DataObjectChangedEventHandler ( _
sender As Object, _
e As DataObjectChangedEventArgs _
)
'Usage
Dim instance As New DataObjectChangedEventHandler(AddressOf HandlerMethod)
public delegate void DataObjectChangedEventHandler(
Object sender,
DataObjectChangedEventArgs e
)
public delegate void DataObjectChangedEventHandler(
Object^ sender,
DataObjectChangedEventArgs^ e
)
JScript does not support delegates.
Parameters
sender
Type: System.ObjectThe source of the event.
e
Type: Microsoft.VisualStudio.Data.DataObjectChangedEventArgsA DataObjectChangedEventArgs that contains the event data.