Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Represents a Windows Azure Storage account.

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

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.::..CloudStorageAccount

Syntax

 
public sealed class CloudStorageAccount
 
public ref class CloudStorageAccount sealed 
 
[<Sealed>]
type CloudStorageAccount = class end
 
Public NotInheritable Class CloudStorageAccount

Constructors

NameDescription
System_CAPS_pubmethodCloudStorageAccount(StorageCredentials, Boolean)(StorageCredentials^, Boolean)(StorageCredentials, Boolean)(StorageCredentials, Boolean)

Initializes a new instance of the CloudStorageAccount class using the specified credentials, and specifies whether to use HTTP or HTTPS to connect to the storage services.

System_CAPS_pubmethodCloudStorageAccount(StorageCredentials, StorageUri, StorageUri, StorageUri, StorageUri)(StorageCredentials^, StorageUri^, StorageUri^, StorageUri^, StorageUri^)(StorageCredentials, StorageUri, StorageUri, StorageUri, StorageUri)(StorageCredentials, StorageUri, StorageUri, StorageUri, StorageUri)

Initializes a new instance of the CloudStorageAccount class using the specified account credentials and service endpoints.

System_CAPS_pubmethodCloudStorageAccount(StorageCredentials, String, Boolean)(StorageCredentials^, String^, Boolean)(StorageCredentials, String, Boolean)(StorageCredentials, String, Boolean)

Initializes a new instance of the CloudStorageAccount class using the specified credentials and endpoint suffix, and specifies whether to use HTTP or HTTPS to connect to the storage services.

System_CAPS_pubmethodCloudStorageAccount(StorageCredentials, String, String, Boolean)(StorageCredentials^, String^, String^, Boolean)(StorageCredentials, String, String, Boolean)(StorageCredentials, String, String, Boolean)

Initializes a new instance of the CloudStorageAccount class using the specified credentials and endpoint suffix, and specifies whether to use HTTP or HTTPS to connect to the storage services.

System_CAPS_pubmethodCloudStorageAccount(StorageCredentials, Uri, Uri, Uri, Uri)(StorageCredentials^, Uri^, Uri^, Uri^, Uri^)(StorageCredentials, Uri, Uri, Uri, Uri)(StorageCredentials, Uri, Uri, Uri, Uri)

Initializes a new instance of the CloudStorageAccount class using the specified credentials and service endpoints.

Properties

NameDescription
System_CAPS_pubpropertyBlobEndpointBlobEndpointBlobEndpointBlobEndpoint

Gets the primary endpoint for the Blob service, as configured for the storage account.

System_CAPS_pubpropertyBlobStorageUriBlobStorageUriBlobStorageUriBlobStorageUri

Gets the endpoints for the Blob service at the primary and secondary location, as configured for the storage account.

System_CAPS_pubpropertyCredentialsCredentialsCredentialsCredentials

Gets the credentials used to create this CloudStorageAccount object.

System_CAPS_pubpropertySystem_CAPS_staticDevelopmentStorageAccountDevelopmentStorageAccountDevelopmentStorageAccountDevelopmentStorageAccount

Gets a CloudStorageAccount object that references the well-known development storage account.

System_CAPS_pubpropertyFileEndpointFileEndpointFileEndpointFileEndpoint

Gets the primary endpoint for the File service, as configured for the storage account.

System_CAPS_pubpropertyFileStorageUriFileStorageUriFileStorageUriFileStorageUri

Gets the endpoints for the File service at the primary and secondary location, as configured for the storage account.

System_CAPS_pubpropertyQueueEndpointQueueEndpointQueueEndpointQueueEndpoint

Gets the primary endpoint for the Queue service, as configured for the storage account.

System_CAPS_pubpropertyQueueStorageUriQueueStorageUriQueueStorageUriQueueStorageUri

Gets the endpoints for the Queue service at the primary and secondary location, as configured for the storage account.

System_CAPS_pubpropertyTableEndpointTableEndpointTableEndpointTableEndpoint

Gets the primary endpoint for the Table service, as configured for the storage account.

System_CAPS_pubpropertyTableStorageUriTableStorageUriTableStorageUriTableStorageUri

Gets the endpoints for the Table service at the primary and secondary location, as configured for the storage account.

Methods

NameDescription
System_CAPS_pubmethodCreateCloudAnalyticsClient()()()()

Creates an analytics client.

System_CAPS_pubmethodCreateCloudBlobClient()()()()

Creates the Blob service client.

System_CAPS_pubmethodCreateCloudFileClient()()()()

Creates the File service client.

System_CAPS_pubmethodCreateCloudQueueClient()()()()

Creates the Queue service client.

System_CAPS_pubmethodCreateCloudTableClient()()()()

Creates the Table service client.

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetSharedAccessSignature(SharedAccessAccountPolicy)(SharedAccessAccountPolicy^)(SharedAccessAccountPolicy)(SharedAccessAccountPolicy)

Returns a shared access signature for the account.

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticParse(String)(String^)(String)(String)

Parses a connection string and returns a CloudStorageAccount created from the connection string.

System_CAPS_pubmethodToString()()()()

Returns a connection string for this storage account, without sensitive data.(Overrides Object.::..ToString()()()().)

System_CAPS_pubmethodToString(Boolean)(Boolean)(Boolean)(Boolean)

Returns a connection string for the storage account, optionally with sensitive data.

System_CAPS_pubmethodSystem_CAPS_staticTryParse(String, CloudStorageAccount)(String^, CloudStorageAccount^%)(String, CloudStorageAccount)(String, CloudStorageAccount)

Indicates whether a connection string can be parsed to return a CloudStorageAccount object.

Thread Safety

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

Return to top