HttpResponseHeaderCollection.Location Proprietà

Definizione

Ottiene o imposta l'URI che rappresenta il valore o un'intestazione HTTP percorso in una risposta 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

Valore della proprietà

Oggetto che rappresenta il valore di un'intestazione HTTP location in una risposta HTTP. Un valore Null indica che l'intestazione è assente.

Commenti

Il codice di esempio seguente mostra un metodo per impostare l'intestazione Location in un oggetto HttpResponseMessage usando la proprietà Location nell'oggetto 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());
}

Si applica a

Vedi anche