HttpRequestHeaderCollection.MaxForwards プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)
プロパティ値
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);
}