DataConnectionStateChangedEventHandler Delegate
Represents the method that handles the StateChanged event of a specified data connection.
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public Delegate Sub DataConnectionStateChangedEventHandler ( _
sender As Object, _
e As DataConnectionStateChangedEventArgs _
)
public delegate void DataConnectionStateChangedEventHandler(
Object sender,
DataConnectionStateChangedEventArgs e
)
public delegate void DataConnectionStateChangedEventHandler(
Object^ sender,
DataConnectionStateChangedEventArgs^ e
)
type DataConnectionStateChangedEventHandler =
delegate of
sender:Object *
e:DataConnectionStateChangedEventArgs -> unit
JScript does not support delegates.
Parameters
sender
Type: System.ObjectThe source of the event.
e
Type: Microsoft.VisualStudio.Data.DataConnectionStateChangedEventArgsA DataConnectionStateChangedEventArgs
object instance that contains the event data.