Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

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

Syntax

 
public CloudStorageAccount(
	StorageCredentials storageCredentials,
	Uri blobEndpoint,
	Uri queueEndpoint,
	Uri tableEndpoint,
	Uri fileEndpoint
)
 
public:
CloudStorageAccount(
	StorageCredentials^ storageCredentials,
	Uri^ blobEndpoint,
	Uri^ queueEndpoint,
	Uri^ tableEndpoint,
	Uri^ fileEndpoint
)
 
new : 
        storageCredentials:StorageCredentials *
        blobEndpoint:Uri *
        queueEndpoint:Uri *
        tableEndpoint:Uri *
        fileEndpoint:Uri -> CloudStorageAccount
 
Public Sub New (
	storageCredentials As StorageCredentials,
	blobEndpoint As Uri,
	queueEndpoint As Uri,
	tableEndpoint As Uri,
	fileEndpoint As Uri
)

Parameters

storageCredentials
Type: Microsoft.WindowsAzure.Storage.Auth.StorageCredentialsMicrosoft.WindowsAzure.Storage.Auth::StorageCredentials^Microsoft.WindowsAzure.Storage.Auth.StorageCredentialsMicrosoft.WindowsAzure.Storage.Auth.StorageCredentials

A StorageCredentials object.

blobEndpoint
Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri specifying the primary Blob service endpoint.

queueEndpoint
Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri specifying the primary Queue service endpoint.

tableEndpoint
Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri specifying the primary Table service endpoint.

fileEndpoint
Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri specifying the primary File service endpoint.

Return to top