Table of Contents

Class ByteRange

Namespace
Amazon.S3.Model
Assembly
AWSSDK.S3.dll

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

start long
end long

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

long

FormattedByteRange

The formatted string representing the byte range to be set for the range header.

public string FormattedByteRange { get; set; }

Property Value

string

Start

The starting byte number of the range

public long Start { get; set; }

Property Value

long