HttpContentHeaderCollection.ContentLength 属性

定义

获取或设置 HTTP 内容上的 HTTP Content-Length 标头的值。

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 内容上的 HTTP Content-Length 标头值的值。 null 值表示标头不存在。

注解

下面的示例代码演示了一个方法,该方法使用 HttpContentHeaderCollection 对象上的 ContentLength 属性获取或设置 HTTP 内容的 Content-Length 标头。

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

适用于