次の方法で共有


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

適用対象