HttpDateOrDeltaHeaderValue クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HTTP 応答の Retry-After HTTP ヘッダーの値を表します。
public ref class HttpDateOrDeltaHeaderValue sealed : IStringable
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class HttpDateOrDeltaHeaderValue final : IStringable
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class HttpDateOrDeltaHeaderValue : IStringable
Public NotInheritable Class HttpDateOrDeltaHeaderValue
Implements IStringable
- 継承
- 属性
- 実装
Windows の要件
デバイス ファミリ |
Windows 10 (10.0.10240.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v1.0 で導入)
|
例
次のサンプル コードは、HttpDateOrDeltaHeaderValue クラスのプロパティとメソッドを使用して、HttpResponseMessage オブジェクトの Retry-After HTTP ヘッダーを取得および設定するメソッドを示しています。
using System;
using Windows.Web.Http;
using Windows.Web.Http.Headers;
public void DemonstrateHeaderResponseRetryAfter() {
var response = new HttpResponseMessage();
// Set the header with a strong type.
HttpDateOrDeltaHeaderValue newvalue;
bool parseOk = HttpDateOrDeltaHeaderValue.TryParse("", out newvalue);
if (parseOk) {
response.Headers.RetryAfter = newvalue;
}
// 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());
}
注釈
HttpDateOrDeltaHeaderValue クラスは、HTTP 応答の Retry-After HTTP ヘッダーを表します。
HttpResponseHeaderCollection の RetryAfter プロパティは、HttpDateOrDeltaHeaderValue オブジェクトを返します。
プロパティ
Date |
Retry-After HTTP ヘッダーで使用される HTTP 日付情報の値を取得します。 |
Delta |
Retry-After HTTP ヘッダーで使用される差分秒数情報の値を取得します。 |
メソッド
Parse(String) |
文字列を HttpDateOrDeltaHeaderValue インスタンスに 変換します。 |
ToString() |
現在の HttpDateOrDeltaHeaderValue オブジェクトを表す文字列を返します。 |
TryParse(String, HttpDateOrDeltaHeaderValue) |
文字列が有効な HttpDateOrDeltaHeaderValue 情報であるかどうかを判断します。 |