HttpContentHeaderCollection.Expires 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property IReference<DateTime> ^ Expires { IReference<DateTime> ^ get(); void set(IReference<DateTime> ^ value); };
IReference<DateTime> Expires();
void Expires(IReference<DateTime> value);
public System.Nullable<System.DateTimeOffset> Expires { get; set; }
var iReference = httpContentHeaderCollection.expires;
httpContentHeaderCollection.expires = iReference;
Public Property Expires As Nullable(Of DateTimeOffset)
屬性值
物件,表示 HTTP 內容上 HTTP Expires 標頭的值。 Null值表示標頭不存在。
備註
Expires 屬性代表 HTTP 內容上 Expires 標頭的值。 [到期]標頭是將 HTTP 內容視為過期的日期和時間。
JAVAscript 和 .NET 語言不會直接使用 DateTime 物件。 在 JAVAscript 中, DateTime 會投影為 物件,並在 .NET 中投影為 System.DateTimeOffset。 每個語言都會以透明方式處理個別語言的資料細微性和日期範圍轉換。
在 C++ 中,值的資料細微性與 相同,並支援 JAVAscript 和 .NET 所需的日期範圍。
如需詳細資訊,請參閱 Windows.Foundation.DateTime 結構。
下列範例程式碼示範使用HttpContentHeaderCollection物件上的Expires屬性,取得或設定 HTTP 內容上的 Expires 標頭值的方法。
// Expires header
// nullable DateTimeOffset
//
void DemoExpires(IHttpContent content) {
var h = content.Headers;
h.Expires = DateTimeOffset.Now;
var header = h.Expires;
uiLog.Text += "\nEXPIRES HEADER\n";
uiLog.Text += String.Format ("Expires: {0}\n", header.ToString());
}