Condividi tramite


HttpRequestHeaderCollection.MaxForwards Proprietà

Definizione

Ottiene o imposta un valore intero che rappresenta il valore di un'intestazione HTTP Max-Forwards in una richiesta 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)

Valore della proprietà

IReference<UInt32>

Nullable<UInt32>

Windows.Foundation.IReference

IReference<uint32_t>

Valore intero che rappresenta il valore di un'intestazione HTTP Max-Forwards in una richiesta HTTP. Un valore Null indica che l'intestazione è assente.

Commenti

Il codice di esempio seguente mostra un metodo per impostare l'intestazione Max-Forwards su un oggetto HttpRequestMessage usando la proprietà MaxForwards nell'oggetto HttpRequestHeaderCollection .

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);
}

Si applica a

Vedi anche