Partager via


HttpResponseHeaderCollection.Location Propriété

Définition

Obtient ou définit l’URI qui représente la valeur ou un en-tête HTTP Location sur une réponse HTTP.

public:
 property Uri ^ Location { Uri ^ get(); void set(Uri ^ value); };
Uri Location();

void Location(Uri value);
public System.Uri Location { get; set; }
var uri = httpResponseHeaderCollection.location;
httpResponseHeaderCollection.location = uri;
Public Property Location As Uri

Valeur de propriété

Objet qui représente la valeur d’un en-tête HTTP Location sur une réponse HTTP. Une valeur null signifie que l’en-tête est absent.

Remarques

L’exemple de code suivant montre une méthode permettant de définir l’en-tête Location sur un objet HttpResponseMessage à l’aide de la propriété Location sur l’objet HttpResponseHeaderCollection .

public void DemonstrateHeaderResponseLocation() {
    var response = new HttpResponseMessage();

    // Set the header with a strong type.
    response.Headers.Location = new Uri("http://example.com/");

    // Get the strong type out
    System.Diagnostics.Debug.WriteLine("Location absolute uri: {0}", response.Headers.Location.AbsoluteUri);

    // The ToString() is useful for diagnostics, too.
    System.Diagnostics.Debug.WriteLine("The Location ToString() results: {0}", response.Headers.Location.ToString());
}

S’applique à

Voir aussi