ContentRangeHeaderValue コンストラクター

定義

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
ContentRangeHeaderValue(Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

ContentRangeHeaderValue(Int64, Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

ContentRangeHeaderValue(Int64, Int64, Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

ContentRangeHeaderValue(Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

public:
 ContentRangeHeaderValue(long length);
public ContentRangeHeaderValue(long length);
new System.Net.Http.Headers.ContentRangeHeaderValue : int64 -> System.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (length As Long)

パラメーター

length
Int64

範囲の始点または終点 (バイト単位)。

適用対象

ContentRangeHeaderValue(Int64, Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

public:
 ContentRangeHeaderValue(long from, long to);
public ContentRangeHeaderValue(long from, long to);
new System.Net.Http.Headers.ContentRangeHeaderValue : int64 * int64 -> System.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (from As Long, to As Long)

パラメーター

from
Int64

データの送信を開始する位置 (バイト単位)。

to
Int64

データの送信を停止する位置 (バイト単位)。

適用対象

ContentRangeHeaderValue(Int64, Int64, Int64)

ContentRangeHeaderValue クラスの新しいインスタンスを初期化します。

public:
 ContentRangeHeaderValue(long from, long to, long length);
public ContentRangeHeaderValue(long from, long to, long length);
new System.Net.Http.Headers.ContentRangeHeaderValue : int64 * int64 * int64 -> System.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (from As Long, to As Long, length As Long)

パラメーター

from
Int64

データの送信を開始する位置 (バイト単位)。

to
Int64

データの送信を停止する位置 (バイト単位)。

length
Int64

範囲の始点または終点 (バイト単位)。

適用対象