Class ByteRange
This class represents the byte range for a range GET from S3.
public class ByteRange
- Inheritance
-
ByteRange
- Inherited Members
Constructors
ByteRange(long, long)
Constructs a ByteRange and sets the start and end.
public ByteRange(long start, long end)
Parameters
ByteRange(string)
Constructs a ByteRange and sets the header to the value specified.
public ByteRange(string byteRangeValue)
Parameters
byteRangeValue
string
Properties
End
The ending byte number of the range
public long End { get; set; }
Property Value
FormattedByteRange
The formatted string representing the byte range to be set for the range header.
public string FormattedByteRange { get; set; }
Property Value
Start
The starting byte number of the range
public long Start { get; set; }