Class ShareFileRangeInfo
Contains file share range information returned from the ShareFileClient.GetRangeList operations.
public class ShareFileRangeInfo
- Inheritance
-
ShareFileRangeInfo
- Inherited Members
Properties
ClearRanges
Clear ranges for the file.
public IEnumerable<HttpRange> ClearRanges { get; }
Property Value
- IEnumerable<HttpRange>
ETag
The ETag contains a value which represents the version of the file, in quotes.
public ETag ETag { get; }
Property Value
- ETag
FileContentLength
The size of the file in bytes.
public long FileContentLength { get; }
Property Value
LastModified
The date/time that the file was last modified. Any operation that modifies the file, including an update of the file's metadata or properties, changes the file's last modified time.
public DateTimeOffset LastModified { get; }
Property Value
Ranges
A list of non-overlapping valid ranges, sorted by increasing address range.
public IEnumerable<HttpRange> Ranges { get; }
Property Value
- IEnumerable<HttpRange>