ContentRangeHeaderValue 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
ContentRangeHeaderValue(Int64) |
Initializes a new instance of ContentRangeHeaderValue. |
ContentRangeHeaderValue(Int64, Int64) |
Initializes a new instance of ContentRangeHeaderValue. |
ContentRangeHeaderValue(Int64, Int64, Int64) |
Initializes a new instance of ContentRangeHeaderValue. |
ContentRangeHeaderValue(Int64)
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
Initializes a new instance of ContentRangeHeaderValue.
public:
ContentRangeHeaderValue(long length);
public ContentRangeHeaderValue (long length);
new Microsoft.Net.Http.Headers.ContentRangeHeaderValue : int64 -> Microsoft.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (length As Long)
Parameters
- length
- Int64
The total size of the document in bytes.
Applies to
ContentRangeHeaderValue(Int64, Int64)
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
Initializes a new instance of ContentRangeHeaderValue.
public:
ContentRangeHeaderValue(long from, long to);
public ContentRangeHeaderValue (long from, long to);
new Microsoft.Net.Http.Headers.ContentRangeHeaderValue : int64 * int64 -> Microsoft.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (from As Long, to As Long)
Parameters
- from
- Int64
The start of the range.
- to
- Int64
The end of the range.
Applies to
ContentRangeHeaderValue(Int64, Int64, Int64)
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
- Source:
- ContentRangeHeaderValue.cs
Initializes a new instance of ContentRangeHeaderValue.
public:
ContentRangeHeaderValue(long from, long to, long length);
public ContentRangeHeaderValue (long from, long to, long length);
new Microsoft.Net.Http.Headers.ContentRangeHeaderValue : int64 * int64 * int64 -> Microsoft.Net.Http.Headers.ContentRangeHeaderValue
Public Sub New (from As Long, to As Long, length As Long)
Parameters
- from
- Int64
The start of the range.
- to
- Int64
The end of the range.
- length
- Int64
The total size of the document in bytes.