HttpResponse.Cache プロパティ
Web ページのキャッシュ ポリシー (expiration time 句、privacy 句、vary 句) を取得します。
名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public ReadOnly Property Cache As HttpCachePolicy
'使用
Dim instance As HttpResponse
Dim value As HttpCachePolicy
value = instance.Cache
public HttpCachePolicy Cache { get; }
public:
property HttpCachePolicy^ Cache {
HttpCachePolicy^ get ();
}
/** @property */
public HttpCachePolicy get_Cache ()
public function get Cache () : HttpCachePolicy
適用できません。
プロパティ値
現在の応答のキャッシュ ポリシーに関する情報を格納する HttpCachePolicy オブジェクト。
使用例
現在のキャッシュ ポリシーのプロパティを HTTP 出力ストリームに書き込む例を次に示します。
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60))
Response.Cache.SetCacheability(HttpCacheability.Public)
Response.Cache.SetValidUntilExpires(False)
Response.Cache.VaryByParams("Category") = True
If Response.Cache.VaryByParams("Category") Then
'...
End If
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(false);
Response.Cache.VaryByParams["Category"] = true;
if (Response.Cache.VaryByParams["Category"])
{
//...
}
get_Response().get_Cache().SetExpires(DateTime.get_Now().
AddSeconds(60));
get_Response().get_Cache().SetCacheability(HttpCacheability.Public);
get_Response().get_Cache().SetValidUntilExpires(false);
get_Response().get_Cache().get_VaryByParams().
set_Item("Category", true);
if (get_Response().get_Cache().get_VaryByParams().
get_Item("Category")) {
//...
}
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60))
Response.Cache.SetCacheability(HttpCacheability.Public)
Response.Cache.SetValidUntilExpires(false)
Response.Cache.VaryByParams("Category") = true
if(Response.Cache.VaryByParams("Category")){
//...
}
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0