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