HttpResponseHeaderCollection.Date 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property IReference<DateTime> ^ Date { IReference<DateTime> ^ get(); void set(IReference<DateTime> ^ value); };
IReference<DateTime> Date();
void Date(IReference<DateTime> value);
public System.Nullable<System.DateTimeOffset> Date { get; set; }
var iReference = httpResponseHeaderCollection.date;
httpResponseHeaderCollection.date = iReference;
Public Property Date As Nullable(Of DateTimeOffset)
屬性值
物件,表示 HTTP 要求上 Date HTTP 標頭的值。 Null值表示標頭不存在。
備註
Date 屬性代表 HTTP 回應上 Date HTTP 標頭的值。 Date標頭是傳送訊息的日期和時間。
JAVAscript 和 .NET 語言不會直接使用 DateTime 物件。 在 JAVAscript 中, DateTime 會投影為 物件,而 .NET 中則會投影為 System.DateTimeOffset。 每個語言都會透明地處理個別語言的資料細微性和日期範圍轉換。
在 C++ 中,值的資料細微性與 相同,並支援 JAVAscript 和 .NET 所需的日期範圍。
如需詳細資訊,請參閱 Windows.Foundation.DateTime 結構。
下列範例程式碼示範在HttpResponseMessage物件上使用HttpResponseHeaderCollection物件上的 Date 屬性取得和設定Date標頭的方法。
public void DemonstrateHeaderResponseDate() {
var response = new HttpResponseMessage();
// Set the header with a strong type.
response.Headers.Date = DateTimeOffset.UtcNow;
// Get the strong type out
System.Diagnostics.Debug.WriteLine("Date value in ticks: {0}", response.Headers.Date.Value.Ticks);
// The ToString() is useful for diagnostics, too.
System.Diagnostics.Debug.WriteLine("The Date ToString() results: {0}", response.Headers.Date.ToString());
}