<PackageReference Include="Azure.Core" Version="1.47.2" />

Azure.HttpRange

public struct HttpRange : IEquatable<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); } }