HttpResponseHeaderCollection.Location Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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());
}