HttpContentHeaderCollection.ContentLocation Proprietà

Definizione

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());
}

Si applica a

Vedi anche