Compartir a través de


HttpRequestHeaderCollection.MaxForwards Propiedad

Definición

Obtiene o establece un valor entero que representa el valor de un encabezado HTTP Max-Forwards en una solicitud 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)

Valor de propiedad

IReference<UInt32>

Nullable<UInt32>

Windows.Foundation.IReference

IReference<uint32_t>

Valor entero que representa el valor de un encabezado HTTP Max-Forwards en una solicitud HTTP. Un valor NULL significa que el encabezado no está presente.

Comentarios

El código de ejemplo siguiente muestra un método para establecer el encabezado Max-Forwards en un objeto HttpRequestMessage mediante la propiedad MaxForwards en el objeto 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);
}

Se aplica a

Consulte también