PageBlobClient.GetAllPageRangesDiffAsync Method

Definition

The GetAllPageRangesDiffAsync(GetPageRangesDiffOptions, CancellationToken) operation returns the list of page ranges that differ between a PreviousSnapshot and this page blob. Changed pages include both updated and cleared pages.

For more information, see Get Page Ranges.

public virtual Azure.AsyncPageable<Azure.Storage.Blobs.Models.PageRangeItem> GetAllPageRangesDiffAsync (Azure.Storage.Blobs.Models.GetPageRangesDiffOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllPageRangesDiffAsync : Azure.Storage.Blobs.Models.GetPageRangesDiffOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Storage.Blobs.Models.PageRangeItem>
override this.GetAllPageRangesDiffAsync : Azure.Storage.Blobs.Models.GetPageRangesDiffOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Storage.Blobs.Models.PageRangeItem>
Public Overridable Function GetAllPageRangesDiffAsync (Optional options As GetPageRangesDiffOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of PageRangeItem)

Parameters

options
GetPageRangesDiffOptions

Optional parameters.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A AsyncPageable<T> describing the valid page ranges for this blob.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to