此主题尚未评级 - 评价此主题

CloudBlob.Delete 方法 (BlobRequestOptions)

Deletes the blob.

命名空间: Microsoft.WindowsAzure.StorageClient
程序集: Microsoft.WindowsAzure.StorageClient(在 microsoft.windowsazure.storageclient.dll 中)
用法
Dim instance As CloudBlob
Dim options As BlobRequestOptions

instance.Delete(options)
public void Delete (
	BlobRequestOptions options
)
public void Delete (
	BlobRequestOptions options
)
public function Delete (
	options : BlobRequestOptions
)

参数

options

An object that specifies any additional options for the request.

The following code example enumerates through the blobs in a container and deletes each blob and its snapshots.

static void DeleteBlobsAndSnapshots(Uri blobEndpoint, string accountName, string accountKey)
{
    CloudBlobClient blobClient = new CloudBlobClient(blobEndpoint, new StorageCredentialsAccountAndKey(accountName, accountKey));

    //Get a reference to the container.
    CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");

    //Indicate that any snapshots should be deleted.
    BlobRequestOptions options = new BlobRequestOptions();
    options.DeleteSnapshotsOption = DeleteSnapshotsOption.IncludeSnapshots;

    //Specify a flat blob listing, so that only CloudBlob objects will be returned.
    //The Delete method exists only on CloudBlob, not on IListBlobItem.
    options.UseFlatBlobListing = true;

    //Enumerate through the blobs in the container, deleting both blobs and their snapshots.
    foreach (CloudBlob blob in container.ListBlobs(options))
    {
        Console.WriteLine(blob.Uri);
        blob.Delete(options);
    }
}

A blob that has snapshots cannot be deleted unless the snapshots are also deleted. If a blob has snapshots, use the DeleteSnapshotsOption property to specify how the snapshots should be handled when the blob is deleted.

The Delete method will fail if the blob does not exist. To delete the blob only if it exists, use the DeleteIfExists method.


此类型的任何公共静态(在 Visual Basic 中为 Shared)成员都是线程安全的。但不保证所有实例成员都是线程安全的。

开发平台

Windows XP Home Edition, Windows XP Professional, Windows Server 2003、Windows Server 2008 和 Windows 2000

目标平台

本文是否对您有所帮助?
(1500 个剩余字符)

社区附加资源

© 2013 Microsoft. 版权所有。
facebook page visit twitter rss feed newsletter