Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Specifies which items to include when listing a set of blobs.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[FlagsAttribute]
public enum BlobListingDetails
 
[FlagsAttribute]
public enum class BlobListingDetails
 
[<FlagsAttribute>]
type BlobListingDetails
 
<FlagsAttribute>
Public Enumeration BlobListingDetails

Members

Member nameDescription
All

List all available committed blobs, uncommitted blobs, and snapshots, and return all metadata and copy status for those blobs.

Copy

Include copy properties in the listing.

Metadata

Retrieve blob metadata for each blob returned in the listing.

None

List only committed blobs, and do not return blob metadata.

Snapshots

List committed blobs and blob snapshots.

UncommittedBlobs

List committed and uncommitted blobs.

Return to top