CloudBlobContainer CreateIfNotExistsAsync与CreateIfNotExists

时间:2013-12-19 03:12:22

标签: azure azure-storage

有人能解释一下Windows Azure中CloudBlobContainer的CreateIfNotExists和CreateIfNotExistsAsync方法之间的区别吗? MSDN文档只是说CreateIfNotExistsAsync方法

  

如果容器尚不存在,则返回创建容器的任务。

适用于CreateIfnotExists

  

如果容器尚不存在,则创建容器。

所以我真的不明白它们之间的区别。

1 个答案:

答案 0 :(得分:2)

基本上两个操作都在做同样的事情,即creating a blob container if it does not exist。不同之处在于,一个是异步(CreateIfNotExistsAsync)而另一个是同步(CreateIfNotExists)。