Azure.HttpRange
Defines a range of bytes within an HTTP resource, starting at an offset and
ending at offset+count-1 inclusively.
namespace Azure
{
public readonly struct HttpRange : IEquatable<HttpRange>
{
public long Offset { get; }
public long? Length { get; }
public HttpRange(long offset = 0, long? length = default(long?));
public static bool operator ==(HttpRange left, HttpRange right);
public static bool operator !=(HttpRange left, HttpRange right);
public bool Equals(HttpRange other);
}
}