Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SqlConnection::FireInfoMessageEventOnUserErrors Property

 

Gets or sets the FireInfoMessageEventOnUserErrors property.

Namespace:   System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

public:
property bool FireInfoMessageEventOnUserErrors {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the FireInfoMessageEventOnUserErrors property has been set; otherwise false.

When you set FireInfoMessageEventOnUserErrors to true, errors that were previously treated as exceptions are now handled as InfoMessage events. All events fire immediately and are handled by the event handler. If is FireInfoMessageEventOnUserErrors is set to false, then InfoMessage events are handled at the end of the procedure.

System_CAPS_noteNote

An error with a severity level of 17 or above that causes the server to stop processing the command needs to be handled as an exception. In this case, an exception is thrown regardless of how the error is handled in the InfoMessage event.

For more information on working with events, see Connection Events. For more information on errors generated by the SQL Server engine, see SQL Server Books Online.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft