NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SQLConnection InfoMessage Event

Occurs when an informational message is added.

The following declaration shows the syntax for a method that handles the InfoMessage event.

[Visual Basic]
Private Sub SQLConnectionName_InfoMessage( _
   ByVal sender As Object, _
   ByVal e As InfoMessageEventArgs _
)
[C#]
private void SQLConnectionName_InfoMessage(
   object sender,
   InfoMessageEventArgs e
);
[C++]
private: void SQLConnectionName_InfoMessage(
   Object* sender,
   InfoMessageEventArgs* e
);
[JScript]
private SQLConnectionName_InfoMessage(
   sender : Object,
   e : InfoMessageEventArgs
);

Parameters

sender
The source of the event.
e
An InfoMessageEventArgs that contains the event data.

See Also

SQLConnection Class | SQLConnection MembersTopic | System.Data.SQL Namespace