次の方法で共有


HttpRequestHeaderCollection.MaxForwards プロパティ

定義

HTTP 要求の Max-Forwards HTTP ヘッダーの値を表す整数値を取得または設定します。

public:
 property IReference<unsigned int> ^ MaxForwards { IReference<unsigned int> ^ get(); void set(IReference<unsigned int> ^ value); };
IReference<uint32_t> MaxForwards();

void MaxForwards(IReference<uint32_t> value);
public System.Nullable<uint> MaxForwards { get; set; }
var iReference = httpRequestHeaderCollection.maxForwards;
httpRequestHeaderCollection.maxForwards = iReference;
Public Property MaxForwards As Nullable(Of UInteger)

プロパティ値

IReference<UInt32>

Nullable<UInt32>

Windows.Foundation.IReference

IReference<uint32_t>

HTTP 要求の Max-Forwards HTTP ヘッダーの値を表す整数値。 null 値は、ヘッダーが存在しないことを意味します。

注釈

次のサンプル コードは、HttpRequestHeaderCollection オブジェクトの MaxForwards プロパティを使用して、HttpRequestMessage オブジェクトに Max-Forwards ヘッダーを設定するメソッドを示しています。

public void DemonstrateHeaderRequestMaxForwards() {
    var request = new HttpRequestMessage();

    // Set the header with an integer.
    request.Headers.MaxForwards= 2;

    // Get the strong type out
    System.Diagnostics.Debug.WriteLine("MaxForwards value: {0}", request.Headers.MaxForwards);
}

適用対象

こちらもご覧ください