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" %>