Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Updates the key value and key name for the credentials.

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

Syntax

 
public void UpdateKey(
	byte[] keyValue,
	string keyName
)
 
public:
void UpdateKey(
	array<unsigned char>^ keyValue,
	String^ keyName
)
 
member UpdateKey : 
        keyValue:byte[] *
        keyName:string -> unit
 
Public Sub UpdateKey (
	keyValue As Byte(),
	keyName As String
)

Parameters

keyValue
Type: System.Byte[]array<System::Byte>^System.Byte[]System.Byte()

The key value, as an array of bytes, to update.

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

The key name to update.

Return to top