다음을 통해 공유


SqlCacheDependencyAdmin.DisableNotifications(String) 메서드

정의

지정된 데이터베이스에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

public:
 static void DisableNotifications(System::String ^ connectionString);
public static void DisableNotifications (string connectionString);
static member DisableNotifications : string -> unit
Public Shared Sub DisableNotifications (connectionString As String)

매개 변수

connectionString
String

SQL Server 데이터베이스에 연결할 때 사용되는 연결 문자열입니다.

예외

데이터베이스에 연결할 수 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스 연결 권한이 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스에 대한 알림을 사용하지 않을 권한이 없는 경우

예제

다음 코드 예제에서는 합니다 DisableNotifications 메서드를 사용 하지 않도록 설정 된 연결 문자열에서 지정 된 데이터베이스에 대 한 알림 변경 MyConnectionString합니다.

예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 SqlCacheDependencyAdmin 클래스 개요 항목입니다.

' Create a method to disable SqlCacheDependency
' change notifications for the Northwind database.
Public Sub DisableDatabase_Click( _
 sender As Object, e As System.EventArgs)

   SqlCacheDependencyAdmin.DisableNotifications( _
   "Northwind")
   Response.Write("Northwind database disabled at " _
   & DateTime.Now.ToString())

   ' An HttpException is thrown if adequate permissions to
   ' modify the database are not granted.

End Sub

설명

합니다 DisableNotifications 메서드는 지정 된 데이터베이스에서 변경 알림에 대 한 지원을 제거는 connectionString 매개 변수입니다. 실행 하면 합니다 DisableNotifications 실행 해야 합니다는 EnableNotifications 다시 사용 하도록 설정 하려는 경우 메서드는 데이터베이스에 대 한 알림 변경 합니다.

적용 대상