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

CloudBlob.ExistsAsync 方法

定义

重载

ExistsAsync()

启动异步操作以检查 blob 的存在。

ExistsAsync(CancellationToken)

启动异步操作以检查 blob 的存在。

ExistsAsync(BlobRequestOptions, OperationContext)

启动异步操作以检查 blob 的存在。

ExistsAsync(BlobRequestOptions, OperationContext, CancellationToken)

启动异步操作以检查 blob 的存在。

ExistsAsync(Boolean, BlobRequestOptions, OperationContext, CancellationToken)

启动异步操作以检查 blob 的存在。

ExistsAsync()

启动异步操作以检查 blob 的存在。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<bool> ExistsAsync ();
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : unit -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync () As Task(Of Boolean)

返回

表示异步操作的 bool 类型的 Task<TResult> 对象。

属性

适用于

ExistsAsync(CancellationToken)

启动异步操作以检查 blob 的存在。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<bool> ExistsAsync (System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (cancellationToken As CancellationToken) As Task(Of Boolean)

参数

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

表示异步操作的 bool 类型的 Task<TResult> 对象。

属性

适用于

ExistsAsync(BlobRequestOptions, OperationContext)

启动异步操作以检查 blob 的存在。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ExistsAsync : Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (options As BlobRequestOptions, operationContext As OperationContext) As Task(Of Boolean)

参数

options
BlobRequestOptions

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

operationContext
OperationContext

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

返回

表示异步操作的 bool 类型的 Task<TResult> 对象。

属性

适用于

ExistsAsync(BlobRequestOptions, OperationContext, CancellationToken)

启动异步操作以检查 blob 的存在。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ExistsAsync : Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)

参数

options
BlobRequestOptions

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

operationContext
OperationContext

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

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

表示异步操作的 bool 类型的 Task<TResult> 对象。

属性

适用于

ExistsAsync(Boolean, BlobRequestOptions, OperationContext, CancellationToken)

启动异步操作以检查 blob 的存在。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<bool> ExistsAsync (bool primaryOnly, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ExistsAsync : bool * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : bool * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (primaryOnly As Boolean, options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)

参数

primaryOnly
Boolean

如果 true为 ,则将对主位置执行命令。

options
BlobRequestOptions

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

operationContext
OperationContext

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

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

表示异步操作的 bool 类型的 Task<TResult> 对象。

属性

适用于