HttpContentHeaderCollection.ContentLocation 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.
Obtient ou définit la valeur de l’en-tête HTTP Content-Location sur le contenu HTTP.
public:
property Uri ^ ContentLocation { Uri ^ get(); void set(Uri ^ value); };
Uri ContentLocation();
void ContentLocation(Uri value);
public System.Uri ContentLocation { get; set; }
var uri = httpContentHeaderCollection.contentLocation;
httpContentHeaderCollection.contentLocation = uri;
Public Property ContentLocation As Uri
Valeur de propriété
Valeur de l’en-tête Content-Location HTTP sur le contenu HTTP. Une valeur null signifie que l’en-tête est absent.
Remarques
L’exemple de code suivant montre une méthode permettant d’obtenir ou de définir la valeur d’en-tête Content-Location sur le contenu HTTP à l’aide de la propriété ContentLocation sur l’objet HttpContentHeaderCollection .
// Content-Location header
// Uri
void DemoContentLocation(IHttpContent content) {
var h = content.Headers;
h.ContentLocation = new Uri("http://example.com/");
var header = h.ContentLocation;
uiLog.Text += "\nCONTENT LOCATION HEADER\n";
uiLog.Text += string.Format("ContentLocation: ToString: {0}\n\n", header.ToString());
}