你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudPageBlob.BeginGetPageRangesDiff 方法

定义

重载

BeginGetPageRangesDiff(DateTimeOffset, AsyncCallback, Object)

开始异步操作,以返回指定快照和此对象之间不同的页范围的集合。

BeginGetPageRangesDiff(DateTimeOffset, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

开始异步操作,以返回指定快照和此对象之间不同的页范围的集合。

BeginGetPageRangesDiff(DateTimeOffset, AsyncCallback, Object)

开始异步操作,以返回指定快照和此对象之间不同的页范围的集合。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPageRangesDiff (DateTimeOffset previousSnapshotTime, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginGetPageRangesDiff : DateTimeOffset * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetPageRangesDiff : DateTimeOffset * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginGetPageRangesDiff (previousSnapshotTime As DateTimeOffset, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

参数

previousSnapshotTime
DateTimeOffset

一个 DateTimeOffset ,表示要用作差异起点的快照时间戳。 如果此 CloudPageBlob 表示快照,则 previousSnapshotTime 参数必须早于当前快照时间戳。

callback
AsyncCallback

AsyncCallback 异步操作完成时接收通知的委托。

state
Object

将传递给回调委托的用户定义对象。

返回

引用 ICancellableAsyncResult 异步操作的 。

属性

适用于

BeginGetPageRangesDiff(DateTimeOffset, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

开始异步操作,以返回指定快照和此对象之间不同的页范围的集合。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPageRangesDiff (DateTimeOffset previousSnapshotTime, long? offset, long? length, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginGetPageRangesDiff : DateTimeOffset * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetPageRangesDiff : DateTimeOffset * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginGetPageRangesDiff (previousSnapshotTime As DateTimeOffset, offset As Nullable(Of Long), length As Nullable(Of Long), accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

参数

previousSnapshotTime
DateTimeOffset

一个 DateTimeOffset ,表示要用作差异起点的快照时间戳。 如果此 CloudPageBlob 表示快照,则 previousSnapshotTime 参数必须早于当前快照时间戳。

offset
Nullable<Int64>

要根据其列出页面范围的数据范围的起始偏移量(以字节为单位)。 必须是 512 的倍数。

length
Nullable<Int64>

要根据其列出页面范围的数据范围的长度(以字节为单位)。 必须是 512 的倍数。

accessCondition
AccessCondition

一个 AccessCondition 对象,表示继续处理请求而必须满足的条件。 如果为 null,则不使用任何条件。

options
BlobRequestOptions

一个 BlobRequestOptions 对象,它指定请求的其他选项。

operationContext
OperationContext

一个 OperationContext 对象,它一个表示当前操作的上下文。

callback
AsyncCallback

AsyncCallback 异步操作完成时接收通知的委托。

state
Object

将传递给回调委托的用户定义对象。

返回

引用 ICancellableAsyncResult 异步操作的 。

属性

适用于