HttpContentHeaderCollection.ContentLocation Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il valore dell'intestazione HTTP Content-Location nel contenuto 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
Valore della proprietà
Valore dell'intestazione HTTP Content-Location nel contenuto HTTP. Un valore Null indica che l'intestazione è assente.
Commenti
Il codice di esempio seguente mostra un metodo per ottenere o impostare il valore dell'intestazione Content-Location sul contenuto HTTP usando la proprietà ContentLocation nell'oggetto 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());
}