Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initializes a new instance of the PageDiffRange class.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public PageDiffRange(
	long start,
	long end,
	bool isCleared
)
 
public:
PageDiffRange(
	long long start,
	long long end,
	bool isCleared
)
 
new : 
        start:int64 *
        end:int64 *
        isCleared:bool -> PageDiffRange
 
Public Sub New (
	start As Long,
	end As Long,
	isCleared As Boolean
)

Parameters

start
Type: System.Int64System::Int64System.Int64System.Int64

The starting offset.

end
Type: System.Int64System::Int64System.Int64System.Int64

The ending offset.

isCleared
Type: System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean

True if the page range is a cleared range, false otherwise.

Return to top