Table of Contents

Class FileRange

Namespace
Microsoft.WindowsAzure.Storage.File
Assembly
Microsoft.WindowsAzure.Storage.dll

Represents a range in a file.

public sealed class FileRange
Inheritance
FileRange
Inherited Members

Constructors

FileRange(long, long)

Initializes a new instance of the FileRange class.

public FileRange(long start, long end)

Parameters

start long

The starting offset.

end long

The ending offset.

Properties

EndOffset

Gets the ending offset of the page range.

public long EndOffset { get; }

Property Value

long

The ending offset.

StartOffset

Gets the starting offset of the page range.

public long StartOffset { get; }

Property Value

long

The starting offset.

Methods

ToString()

Returns the content of the range as a string.

public override string ToString()

Returns

string

The content of the range.