HttpContentRangeHeaderValue Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
HttpContentRangeHeaderValue(UInt64) |
Initializes a new instance of the HttpContentRangeHeaderValue class with a content length. |
HttpContentRangeHeaderValue(UInt64, UInt64) |
Initializes a new instance of the HttpContentRangeHeaderValue class with a start and stop position. |
HttpContentRangeHeaderValue(UInt64, UInt64, UInt64) |
Initializes a new instance of the HttpContentRangeHeaderValue class with a start and stop position and a content length. |
HttpContentRangeHeaderValue(UInt64)
Initializes a new instance of the HttpContentRangeHeaderValue class with a content length.
public:
HttpContentRangeHeaderValue(unsigned long long length);
HttpContentRangeHeaderValue(uint64_t const& length);
public HttpContentRangeHeaderValue(ulong length);
function HttpContentRangeHeaderValue(length)
Public Sub New (length As ULong)
Parameters
- length
-
UInt64
unsigned long long
uint64_t
The length, in bytes, of the full content entity body.
See also
Applies to
HttpContentRangeHeaderValue(UInt64, UInt64)
Initializes a new instance of the HttpContentRangeHeaderValue class with a start and stop position.
public:
HttpContentRangeHeaderValue(unsigned long long from, unsigned long long to);
HttpContentRangeHeaderValue(uint64_t const& from, uint64_t const& to);
public HttpContentRangeHeaderValue(ulong from, ulong to);
function HttpContentRangeHeaderValue(from, to)
Public Sub New (from As ULong, to As ULong)
Parameters
- from
-
UInt64
unsigned long long
uint64_t
The position, in bytes, at which to start sending data.
- to
-
UInt64
unsigned long long
uint64_t
The position, in bytes, at which to stop sending data.
See also
Applies to
HttpContentRangeHeaderValue(UInt64, UInt64, UInt64)
Initializes a new instance of the HttpContentRangeHeaderValue class with a start and stop position and a content length.
public:
HttpContentRangeHeaderValue(unsigned long long from, unsigned long long to, unsigned long long length);
HttpContentRangeHeaderValue(uint64_t const& from, uint64_t const& to, uint64_t const& length);
public HttpContentRangeHeaderValue(ulong from, ulong to, ulong length);
function HttpContentRangeHeaderValue(from, to, length)
Public Sub New (from As ULong, to As ULong, length As ULong)
Parameters
- from
-
UInt64
unsigned long long
uint64_t
The position, in bytes, at which to start sending data.
- to
-
UInt64
unsigned long long
uint64_t
The position, in bytes, at which to stop sending data.
- length
-
UInt64
unsigned long long
uint64_t
The length, in bytes, of the full content entity body.