AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.