ContentRangeHeaderValue Constructors

Definition

Initializes a new instance of the ContentRangeHeaderValue class.

Overloads

ContentRangeHeaderValue(Int64)

Initializes a new instance of the ContentRangeHeaderValue class.

ContentRangeHeaderValue(Int64, Int64)

Initializes a new instance of the ContentRangeHeaderValue class.

ContentRangeHeaderValue(Int64, Int64, Int64)

Initializes a new instance of the ContentRangeHeaderValue class.

ContentRangeHeaderValue(Int64)

Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs

Initializes a new instance of the ContentRangeHeaderValue class.

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)

Parameters

length
Int64

The starting or ending point of the range, in bytes.

Applies to

ContentRangeHeaderValue(Int64, Int64)

Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs

Initializes a new instance of the ContentRangeHeaderValue class.

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)

Parameters

from
Int64

The position, in bytes, at which to start sending data.

to
Int64

The position, in bytes, at which to stop sending data.

Applies to

ContentRangeHeaderValue(Int64, Int64, Int64)

Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs
Source:
ContentRangeHeaderValue.cs

Initializes a new instance of the ContentRangeHeaderValue class.

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)

Parameters

from
Int64

The position, in bytes, at which to start sending data.

to
Int64

The position, in bytes, at which to stop sending data.

length
Int64

The starting or ending point of the range, in bytes.

Applies to