SqlCacheDependency.CreateOutputCacheDependency(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ASP.NET アプリケーションの OutputCache オブジェクトに格納されている項目と、SQL Server データベース テーブルとの間に依存関係を作成します。
public:
static System::Web::Caching::CacheDependency ^ CreateOutputCacheDependency(System::String ^ dependency);
public static System.Web.Caching.CacheDependency CreateOutputCacheDependency (string dependency);
static member CreateOutputCacheDependency : string -> System.Web.Caching.CacheDependency
Public Shared Function CreateOutputCacheDependency (dependency As String) As CacheDependency
パラメーター
- dependency
- String
出力キャッシュ依存関係ディレクティブ。
戻り値
新しい依存関係オブジェクト。
注釈
次のマークアップは、一般的な出力キャッシュ依存関係ディレクティブを示しています。
<%@ OutputCache Duration="3600" SqlDependency="Northwind:Employees" VaryByParam="none" %>