HttpRequestHeaderCollection.MaxForwards Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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);
}