HttpContentHeaderCollection.ContentLength Proprietà

Definizione

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à

IReference<UInt64>

Nullable<UInt64>

Windows.Foundation.IReference

IReference<uint64_t>

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

Si applica a