RangeItemHeaderValue(Nullable<Int64>, Nullable<Int64>) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RangeItemHeaderValue 類別的新執行個體。
public:
RangeItemHeaderValue(Nullable<long> from, Nullable<long> to);
public RangeItemHeaderValue (long? from, long? to);
new System.Net.Http.Headers.RangeItemHeaderValue : Nullable<int64> * Nullable<int64> -> System.Net.Http.Headers.RangeItemHeaderValue
Public Sub New (from As Nullable(Of Long), to As Nullable(Of Long))
參數
例外狀況
備註
HTTP 通訊協定要求中要求前 100 個字節之 Range 標頭中的位元組範圍範例如下:
Range: bytes=0-99\r\n\r\n
在此範例中,參數 from
會指定為 0,並將 to
參數指定為 99。