Struct NormalizedRangeItem
The normalized range item
Inherited Members
Namespace:FubarDev.WebDavServer.Model.Headers
Assembly:FubarDev.WebDavServer.dll
Syntax
public struct NormalizedRangeItem
Constructors
| Improve this Doc View SourceNormalizedRangeItem(Int64, Int64)
Initializes a new instance of the NormalizedRangeItem struct.
Declaration
public NormalizedRangeItem(long from, long to)
Parameters
Type | Name | Description |
---|---|---|
Int64 | from | The start position from where the data will be read from/written to |
Int64 | to | The end position until which the data will be read from/written to |
Properties
| Improve this Doc View SourceFrom
Gets the start position
Declaration
public long From { get; }
Property Value
Type | Description |
---|---|
Int64 |
Length
Gets the length of this range item
Declaration
public long Length { get; }
Property Value
Type | Description |
---|---|
Int64 |
To
Gets the end position
Declaration
public long To { get; }
Property Value
Type | Description |
---|---|
Int64 |