SqlConnection.FireInfoMessageEventOnUserErrors Property

Definition

Gets or sets the FireInfoMessageEventOnUserErrors property.

C#
public bool FireInfoMessageEventOnUserErrors { get; set; }

Property Value

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

Remarks

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.

Napomena

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 Database Engine Errors.

Applies to

Proizvod Verzije
.NET Core 1.0, Core 1.1, 6 (package-provided), 7 (package-provided), 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also