HttpResponse.AddCacheDependency(CacheDependency[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果回應儲存在輸出快取中而且指定的相依性變更,便使快取相依性集合與回應產生關聯,加速回應失效。
public:
void AddCacheDependency(... cli::array <System::Web::Caching::CacheDependency ^> ^ dependencies);
public void AddCacheDependency (params System.Web.Caching.CacheDependency[] dependencies);
member this.AddCacheDependency : System.Web.Caching.CacheDependency[] -> unit
Public Sub AddCacheDependency (ParamArray dependencies As CacheDependency())
參數
- dependencies
- CacheDependency[]
要加入應用程式相依性清單的檔案、快取索引鍵或 CacheDependency。
例外狀況
dependencies
參數為 null
。
已經建立快取的回應之後,這個方法在快取處理管線中已太晚呼叫。
範例
下列範例示範如何使用 方法和 CacheDependency 物件建立快取相依性AddCacheDependency。
<%@ Page Language="C#" %>
<%@ outputcache duration="30" varybyparam="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="Server">
private void Page_Load(object sender, System.EventArgs e)
{
// Create a Cache Dependency
// using a CacheDependency object.
CacheDependency authorsDependency = new CacheDependency("authors.xml");
// Make the page invalid if either of the
// cached items change or expire.
Response.AddCacheDependency(authorsDependency);
// Display the current time for cache reference
lblOutputCacheMsg.Text = DateTime.Now.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Cache Dependencies</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<table>
<tbody>
<tr>
<td style="WIDTH: 118px">
The page was generated at:</td>
<td>
<asp:Label id="lblOutputCacheMsg" runat="server"></asp:Label>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<%@ outputcache duration="30" varybyparam="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="Server">
Sub Page_Load()
' Create a Cache Dependency
' using a CacheDependency object.
Dim authorsDependency("authors.xml") As CacheDependency
' Make the page invalid if either of the
' cached items change or expire.
Response.AddCacheDependency(authorsDependency)
' Display the current time for cache reference
lblOutputCacheMsg.Text = DateTime.Now.ToString()
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Cache Dependencies</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<table>
<tbody>
<tr>
<td style="WIDTH: 118px">
The page was generated at:</td>
<td>
<asp:Label id="lblOutputCacheMsg" runat="server"></asp:Label>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
備註
方法 AddCacheDependency 允許在快取的響應與 CacheDependency 對象之間建立相依性。