class AZBlob::HTTPRange

Overview

HTTPRange defines a range of bytes within an HTTP resource, starting at offset and ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange which has an offset and zero value count indicates from the offset to the resource's end.

Defined in:

azblob/net/options.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(offset : Int64 = 0, count : Int64 = 0) #

[View source]

Class Method Detail

def self.empty #

[View source]

Instance Method Detail

def count : Int64 #

[View source]
def count=(count : Int64) #

[View source]
def format : String #

[View source]
def offset : Int64 #

[View source]
def offset=(offset : Int64) #

[View source]