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