OutputCacheProfile.SqlDependency Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia SqlDependency właściwość .
public:
property System::String ^ SqlDependency { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("sqlDependency")]
public string SqlDependency { get; set; }
[<System.Configuration.ConfigurationProperty("sqlDependency")>]
member this.SqlDependency : string with get, set
Public Property SqlDependency As String
Wartość właściwości
Wartość wyliczenia SqlDependency.
- Atrybuty
Przykłady
W poniższym przykładzie kodu pokazano, jak używać SqlDependency właściwości .
// Get the current SqlDependency.
String sqlDependencyValue =
outputCacheProfile.SqlDependency;
// Set the SqlDependency.
outputCacheProfile.SqlDependency =
string.Empty;
' Get the current SqlDependency.
Dim sqlDependencyValue As String = _
outputCacheProfile.SqlDependency
' Set the SqlDependency.
outputCacheProfile.SqlDependency = _
String.Empty
Uwagi
Element SqlDependency definiuje relację między aplikacją internetową a wystąpieniem SQL Server, umożliwiając wykrywanie zmian danych na serwerze. ZapewniaSqlDependency, że wyjściowe buforowane strony są usuwane z pamięci podręcznej za każdym razem, gdy tabela SQL, od której zależą.
Uwaga
Klasa SqlCacheDependency monitoruje tabelę, tak aby po zmianie tabeli element zostanie automatycznie usunięty z pamięci podręcznej. Klasa ta nie może być dziedziczona.