次の方法で共有


OutputCacheSection.SendCacheControlHeader プロパティ

定義

出力キャッシュ モジュールによって、既定で cache-control:private ヘッダーが送信されるかどうかを示す値を取得または設定します。

public:
 property bool SendCacheControlHeader { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("sendCacheControlHeader", DefaultValue=true)]
public bool SendCacheControlHeader { get; set; }
[<System.Configuration.ConfigurationProperty("sendCacheControlHeader", DefaultValue=true)>]
member this.SendCacheControlHeader : bool with get, set
Public Property SendCacheControlHeader As Boolean

プロパティ値

true ヘッダーの送信が有効な場合は cache-control:private。それ以外の場合は false。 既定値は、true です。

属性

次のコード例は、SendCacheControlHeader プロパティの使用方法を示しています。


// Get the current SendCacheControlHeader.
Boolean sendCacheControlHeaderValue = 
    outputCacheSection.SendCacheControlHeader;

// Set the SendCacheControlHeader.
outputCacheSection.SendCacheControlHeader = false;
' Get the current SendCacheControlHeader.
  Dim sendCacheControlHeaderValue As [Boolean] = _
  outputCacheSection.SendCacheControlHeader

' Set the SendCacheControlHeader.
outputCacheSection.SendCacheControlHeader = False

注釈

SendCacheControlHeader 、出力キャッシュが指定されていないコンテンツに適用されます。 に false設定されている場合、 cache-control:private ヘッダーは既定では送信されません。

注意

この設定により、コンテンツは既定でクライアントにキャッシュされます。

適用対象

こちらもご覧ください