SqlCacheDependencyAdmin.EnableNotifications(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 데이터베이스에 대해 SqlCacheDependency 변경 알림을 활성화합니다.
public:
static void EnableNotifications(System::String ^ connectionString);
public static void EnableNotifications (string connectionString);
static member EnableNotifications : string -> unit
Public Shared Sub EnableNotifications (connectionString As String)
매개 변수
- connectionString
- String
SQL Server 데이터베이스에 연결할 때 사용되는 연결 문자열입니다.
예외
데이터베이스에 연결할 수 없는 경우
또는
ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스 연결 권한이 없는 경우
또는
ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스에 대한 알림을 사용하지 않을 권한이 없는 경우
예제
다음 코드 예제에서는 합니다 EnableNotifications 메서드를 사용 하도록 설정 된 연결 문자열에서 지정 된 데이터베이스에 대 한 알림 변경 MyConnectionString
합니다.
예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 SqlCacheDependencyAdmin 클래스 개요 항목입니다.
protected void enableNotification_Click(object sender, EventArgs e)
{
SqlCacheDependencyAdmin.EnableNotifications(
ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString);
}
Protected Sub enableNotification_Click(ByVal sender As Object, ByVal e As System.EventArgs)
SqlCacheDependencyAdmin.EnableNotifications( _
ConfigurationManager.ConnectionStrings("MyConnectionString").ConnectionString)
End Sub
설명
합니다 EnableNotifications 지정 된 데이터베이스에서 변경 알림에 대 한 지원을 추가 하는 메서드는 connectionString
매개 변수입니다. 실행 하면 합니다 EnableNotifications 실행 해야 합니다는 DisableNotifications 메서드를 사용 하지 않도록 설정 하려는 경우 데이터베이스에 대 한 알림 변경 합니다.