HttpDateOrDeltaHeaderValue クラス

定義

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
継承
Object Platform::Object IInspectable HttpDateOrDeltaHeaderValue
属性
実装

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 ヘッダーを表します。

HttpResponseHeaderCollectionRetryAfter プロパティは、HttpDateOrDeltaHeaderValue オブジェクトを返します。

プロパティ

Date

Retry-After HTTP ヘッダーで使用される HTTP 日付情報の値を取得します。

Delta

Retry-After HTTP ヘッダーで使用される差分秒数情報の値を取得します。

メソッド

Parse(String)

文字列を HttpDateOrDeltaHeaderValue インスタンスに 変換します。

ToString()

現在の HttpDateOrDeltaHeaderValue オブジェクトを表す文字列を返します。

TryParse(String, HttpDateOrDeltaHeaderValue)

文字列が有効な HttpDateOrDeltaHeaderValue 情報であるかどうかを判断します。

適用対象

こちらもご覧ください