Partilhar via


HttpResponseHeaderCollection.Location Propriedade

Definição

Obtém ou define o Uri que representa o valor ou um cabeçalho HTTP local em uma resposta 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

Valor da propriedade

O objeto que representa o valor de um cabeçalho HTTP Location em uma resposta HTTP. Um valor nulo significa que o cabeçalho está ausente.

Comentários

O código de exemplo a seguir mostra um método para definir o cabeçalho Location em um objeto HttpResponseMessage usando a propriedade Location no objeto 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());
}

Aplica-se a

Confira também