SqlCacheDependencyAdmin::DisableTableForNotifications Method (String^, String^)

 

Disables SqlCacheDependency change notifications on a SQL Server database table.

Namespace:   System.Web.Caching
Assembly:  System.Web (in System.Web.dll)

public:
static void DisableTableForNotifications(
	String^ connectionString,
	String^ table
)

Parameters

connectionString
Type: System::String^

A connection string used to connect to the SQL Server database.

table
Type: System::String^

The database table on which to disable change notifications.

Exception Condition
DatabaseNotEnabledForNotificationException

The database is not enabled for change notifications.

ArgumentException

table is an empty string ("").

ArgumentNullException

table is null.

HttpException

A connection to the database could not be established.

-or-

The security context of the ASP.NET application does not have permission to connect to the database.

-or-

The security context of the ASP.NET application does not have permission to disable notifications for the database.

The DisableTableForNotifications method disables change notifications for the table specified in the table parameter, which must be in the database specified in the connectionString parameter.

Once you have used the DisableTableForNotifications method to disable change notifications for a table, you must use one of the EnableTableForNotifications overloads if you wish to re-enable change notifications.

The following code example disables change notification on a table specified in the connection string MyConnectionString.

For the full code required to run the example, see the Example section of the SqlCacheDependencyAdmin class overview topic.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: