Поделиться через


HttpContentHeaderCollection.ContentLength Свойство

Определение

Возвращает или задает значение заголовка HTTP Content-Length для содержимого 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)

Значение свойства

IReference<UInt64>

Nullable<UInt64>

Windows.Foundation.IReference

IReference<uint64_t>

Значение значения заголовка HTTP Content-Length в http-содержимом . Значение NULL означает, что заголовок отсутствует.

Комментарии

В следующем примере кода показан метод для получения или задания заголовка Content-Length для содержимого HTTP с помощью свойства ContentLength объекта 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());
}

Применяется к