HttpContentHeaderCollection.ContentRange プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HTTP コンテンツの HTTP Content-Range ヘッダーの値を表す HttpContentRangeHeaderValue オブジェクトを取得または設定します。
public:
property HttpContentRangeHeaderValue ^ ContentRange { HttpContentRangeHeaderValue ^ get(); void set(HttpContentRangeHeaderValue ^ value); };
HttpContentRangeHeaderValue ContentRange();
void ContentRange(HttpContentRangeHeaderValue value);
public HttpContentRangeHeaderValue ContentRange { get; set; }
var httpContentRangeHeaderValue = httpContentHeaderCollection.contentRange;
httpContentHeaderCollection.contentRange = httpContentRangeHeaderValue;
Public Property ContentRange As HttpContentRangeHeaderValue
プロパティ値
HTTP コンテンツの HTTP Content-Range ヘッダーの値を表す オブジェクト。 null 値は、ヘッダーが存在しないことを意味します。
注釈
次のサンプル コードは、HttpContentHeaderCollection オブジェクトの ContentRange プロパティを使用して、HTTP コンテンツの Content-Range ヘッダー値を取得または設定するメソッドを示しています。
// Content-Range header
// HttpContentRangeHeaderValue (Unit=string, FirstBytePosition, LastBytePosition, Length) all nullable ulong
//
void DemoContentRange(IHttpContent content) {
var h = content.Headers;
h.ContentRange = new HttpContentRangeHeaderValue (10, 20, 333);
var header = h.ContentRange;
uiLog.Text += "\nCONTENT RANGE HEADER\n";
uiLog.Text += string.Format("ContentRange: Unit: {0} FirstBytePosition: {1} LastBytePosition: {2} Length: {3} ToString: {4}\n\n", header.Unit, header.FirstBytePosition, header.LastBytePosition, header.Length, header.ToString());
}