Azure.Storage.ContentRange
struct ContentRange
namespace Azure.Storage
{
internal struct ContentRange
{
public struct RangeUnit
{
public static RangeUnit Bytes { get; }
public RangeUnit(string value);
public static bool operator ==(RangeUnit left, RangeUnit right);
public static bool operator !=(RangeUnit left, RangeUnit right);
public static implicit operator RangeUnit(string value);
public bool Equals(RangeUnit other);
}
public long? Start { get; }
public long? End { get; }
public long? Size { get; }
public RangeUnit Unit { get; }
public ContentRange(RangeUnit unit, long? start, long? end, long? size);
public static ContentRange Parse(string headerValue);
public static HttpRange ToHttpRange(ContentRange contentRange);
public bool Equals(ContentRange other);
public static bool operator ==(ContentRange left, ContentRange right);
public static bool operator !=(ContentRange left, ContentRange right);
}
}