HttpContentHeaderCollection.ContentRange 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 l'oggetto HttpContentRangeHeaderValue che rappresenta il valore di un'intestazione HTTP Content-Range nel contenuto HTTP.
public:
property HttpContentRangeHeaderValue ^ ContentRange { HttpContentRangeHeaderValue ^ get(); void set(HttpContentRangeHeaderValue ^ value); };
HttpContentRangeHeaderValue ContentRange();
void ContentRange(HttpContentRangeHeaderValue value);
public HttpContentRangeHeaderValue ContentRange { get; set; }
var httpContentRangeHeaderValue = httpContentHeaderCollection.contentRange;
httpContentHeaderCollection.contentRange = httpContentRangeHeaderValue;
Public Property ContentRange As HttpContentRangeHeaderValue
Valore della proprietà
Oggetto che rappresenta il valore dell'intestazione HTTP Content-Range 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-Range sul contenuto HTTP usando la proprietà ContentRange nell'oggetto HttpContentHeaderCollection .
// Content-Range header
// HttpContentRangeHeaderValue (Unit=string, FirstBytePosition, LastBytePosition, Length) all nullable ulong
//
void DemoContentRange(IHttpContent content) {
var h = content.Headers;
h.ContentRange = new HttpContentRangeHeaderValue (10, 20, 333);
var header = h.ContentRange;
uiLog.Text += "\nCONTENT RANGE HEADER\n";
uiLog.Text += string.Format("ContentRange: Unit: {0} FirstBytePosition: {1} LastBytePosition: {2} Length: {3} ToString: {4}\n\n", header.Unit, header.FirstBytePosition, header.LastBytePosition, header.Length, header.ToString());
}