SqlCommand.NotificationAutoEnlist Property
Definition
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.
Gets or sets a value indicating whether the application should automatically receive query notifications from a common SqlDependency object.
public:
property bool NotificationAutoEnlist { bool get(); void set(bool value); };
public bool NotificationAutoEnlist { get; set; }
member this.NotificationAutoEnlist : bool with get, set
Public Property NotificationAutoEnlist As Boolean
Property Value
true
if the application should automatically receive query notifications; otherwise
false
. The default value is
true
.
Remarks
This feature is used in ASP.NET applications to receive notifications for all commands executed in an ASP page against SQL Server. This enables ASP.NET to cache the page until the queries used to render the page would produce a different result. Automatic enlistment.
This property applies only to versions of SQL Server that support query notifications. For earlier versions, setting this property to true
has no effect on the application.