AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength Property

Definition

Gets or sets the requested byte range of the resource to be downloaded.

public:
 property IReference<unsigned long long> ^ ResourceByteRangeLength { IReference<unsigned long long> ^ get(); void set(IReference<unsigned long long> ^ value); };
IReference<uint64_t> ResourceByteRangeLength();

void ResourceByteRangeLength(IReference<uint64_t> value);
public System.Nullable<ulong> ResourceByteRangeLength { get; set; }
var iReference = adaptiveMediaSourceDownloadResult.resourceByteRangeLength;
adaptiveMediaSourceDownloadResult.resourceByteRangeLength = iReference;
Public Property ResourceByteRangeLength As Nullable(Of ULong)

Property Value

IReference<UInt64>

Nullable<UInt64>

Windows.Foundation.IReference

IReference<uint64_t>

The requested byte range of the resource to be downloaded.

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v3.0)

Remarks

If this value is set to null, no byte range request is issued and the entire resource will be downloaded. Setting the byte range length to zero is not allowed. If a non-null, non-zero value is specified, then the system will use the value, along with any value specified for the ResourceByteRangeOffset property, to issue a byte range request to the Http server hosting the resource.

Applies to