Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SqlConnection.InfoMessage Event

Definition

Namespace:
System.Data.SqlClient
Assembly:
System.Data.SqlClient.dll
Assembly:
System.Data.dll
Source:
System.Data.SqlClient.notsupported.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when SQL Server returns a warning or informational message.

public:
 event System::Data::SqlClient::SqlInfoMessageEventHandler ^ InfoMessage;
public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage;
[System.Data.DataSysDescription("DbConnection_InfoMessage")]
public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage;
member this.InfoMessage : System.Data.SqlClient.SqlInfoMessageEventHandler 
[<System.Data.DataSysDescription("DbConnection_InfoMessage")>]
member this.InfoMessage : System.Data.SqlClient.SqlInfoMessageEventHandler 
Public Custom Event InfoMessage As SqlInfoMessageEventHandler 

Event Type

Attributes

Remarks

Clients that want to process warnings or informational messages sent by the server should create an SqlInfoMessageEventHandler delegate to listen to this event.

The InfoMessage event occurs when a message with a severity of 10 or less is returned by SQL Server. Messages that have a severity between 11 and 20 raise an error and messages that have a severity over 20 causes the connection to close. For more information on SQL Server error levels, see Database Engine Error Severities.

For more information and an example, see Connection Events.

Applies to

See also


Feedback

Was this page helpful?