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!

ADOConnection 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 ADOConnectionName_InfoMessage( _
   ByVal sender As Object, _
   ByVal e As ADOInfoMessageEventArgs _
)
[C#]
private void ADOConnectionName_InfoMessage(
   object sender,
   ADOInfoMessageEventArgs e
);
[C++]
private: void ADOConnectionName_InfoMessage(
   Object* sender,
   ADOInfoMessageEventArgs* e
);
[JScript]
private ADOConnectionName_InfoMessage(
   sender : Object,
   e : ADOInfoMessageEventArgs
);

Parameters

sender
The source of the event.
e
An ADOInfoMessageEventArgs that contains the event data. The following ADOInfoMessageEventArgs properties provide information specific to this event.
Property Description
ErrorCode
[To be supplied.]
Errors
[To be supplied.]
FullMessage
[To be supplied.]
Message
[To be supplied.]
Source
[To be supplied.]

See Also

ADOConnection Class | ADOConnection MembersTopic | System.Data.ADO Namespace