SqlCacheDependencyAdmin.DisableTableForNotifications Method (String, String[])
Assembly: System.Web (in system.web.dll)
public: static void DisableTableForNotifications ( String^ connectionString, array<String^>^ tables )
public static void DisableTableForNotifications ( String connectionString, String[] tables )
public static function DisableTableForNotifications ( connectionString : String, tables : String[] )
Not applicable.
Parameters
- connectionString
A connection string used to connect to the SQL Server database.
- tables
The array of SQL Server database tables on which to disable change notifications.
| Exception type | Condition |
|---|---|
| The database is not enabled for change notifications. | |
| One of the values in the tables parameter is a null reference (Nothing in Visual Basic). -or- One of the values in the tables parameter is an empty string (""). | |
| tables is a null reference (Nothing in Visual Basic). | |
| 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 removes change notifications from the tables specified in the tables parameter. These tables must be in the database specified in the connectionString parameter.
Once you have used the DisableTableForNotifications method to disable change notifications for a list of tables, you must use one of the EnableTableForNotifications overloads if you wish to re-enable change notifications.