HttpContentHeaderCollection.ContentLength 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-Length nel contenuto HTTP.
public:
property IReference<unsigned long long> ^ ContentLength { IReference<unsigned long long> ^ get(); void set(IReference<unsigned long long> ^ value); };
IReference<uint64_t> ContentLength();
void ContentLength(IReference<uint64_t> value);
public System.Nullable<ulong> ContentLength { get; set; }
var iReference = httpContentHeaderCollection.contentLength;
httpContentHeaderCollection.contentLength = iReference;
Public Property ContentLength As Nullable(Of ULong)
Valore della proprietà
Valore dell'intestazione HTTP Content-Length nel contenuto HTTP. Un valore Null indica che l'intestazione è assente.
Commenti
Il codice di esempio seguente mostra un metodo per ottenere o impostare l'intestazione Content-Length sul contenuto HTTP usando la proprietà ContentLength nell'oggetto HttpContentHeaderCollection .
// Content-Length header
// nullable ulong
void DemoContentLength(IHttpContent content) {
var h = content.Headers;
h.ContentLength = 313;
var header = h.ContentLength;
uiLog.Text += "\nCONTENT LENGTH HEADER\n";
uiLog.Text += string.Format("ContentLength: ToString: {0}\n\n", header.ToString());
}