Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initializes a new instance of the StorageCredentials class with the specified account name, key value, and key name.

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

Syntax

 
public StorageCredentials(
	string accountName,
	string keyValue,
	string keyName
)
 
public:
StorageCredentials(
	String^ accountName,
	String^ keyValue,
	String^ keyName
)
 
new : 
        accountName:string *
        keyValue:string *
        keyName:string -> StorageCredentials
 
Public Sub New (
	accountName As String,
	keyValue As String,
	keyName As String
)

Parameters

accountName
Type: System.StringSystem::String^System.StringSystem.String

A string that represents the name of the storage account.

keyValue
Type: System.StringSystem::String^System.StringSystem.String

A string that represents the Base64-encoded account access key.

keyName
Type: System.StringSystem::String^System.StringSystem.String

A string that represents the name of the key.

Return to top