This topic has not yet been rated - Rate this topic

BlobRequestOptions.BlobListingDetails Property

Gets or sets options for listing blobs.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage
Dim instance As BlobRequestOptions
Dim value As BlobListingDetails

value = instance.BlobListingDetails

instance.BlobListingDetails = value
public:
property BlobListingDetails BlobListingDetails {
	BlobListingDetails get ();
	void set (BlobListingDetails value);
}
/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public BlobListingDetails get_BlobListingDetails ()

/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public void set_BlobListingDetails (BlobListingDetails value)

CompilerGeneratedAttribute 
public function get BlobListingDetails () : BlobListingDetails

CompilerGeneratedAttribute 
public function set BlobListingDetails (value : BlobListingDetails)

Property Value

Type: Microsoft.WindowsAzure.StorageClient.BlobListingDetails

One of the enumeration values that indicates what items a listing operation will return.

The following code example lists blobs in a container, including snapshots.

static void ListBlobsInContainer(Uri blobEndpoint, string accountName, string accountKey)
{
    //Create service client for credentialed access to the Blob service.
    CloudBlobClient blobClient =
        new CloudBlobClient(blobEndpoint, new StorageCredentialsAccountAndKey(accountName, accountKey));

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

    //List blobs in this container using a flat listing.
    BlobRequestOptions options = new BlobRequestOptions();
    options.UseFlatBlobListing = true;

    //List snapshots, which requires a flat blob listing.
    options.BlobListingDetails = BlobListingDetails.Snapshots;
            
    foreach (var blobItem in container.ListBlobs(options))
    {
        Console.WriteLine(blobItem.Uri);
    }
}

This property is applicable only to a request to list blobs.


Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.