HttpContentHeaderCollection.ContentLength 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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)
属性值
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());
}