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