StorageCredentials.UpdateKey Method

Definition

Overloads

UpdateKey(Byte[])

Updates the key value for the credentials.

UpdateKey(String)

Updates the key value for the credentials.

UpdateKey(Byte[], String)

Updates the key value and key name for the credentials.

UpdateKey(String, String)

Updates the key value and key name for the credentials.

UpdateKey(Byte[])

Updates the key value for the credentials.

public void UpdateKey (byte[] keyValue);
member this.UpdateKey : byte[] -> unit
Public Sub UpdateKey (keyValue As Byte())

Parameters

keyValue
Byte[]

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

Applies to

UpdateKey(String)

Updates the key value for the credentials.

public void UpdateKey (string keyValue);
member this.UpdateKey : string -> unit
Public Sub UpdateKey (keyValue As String)

Parameters

keyValue
String

The key value, as a Base64-encoded string, to update.

Applies to

UpdateKey(Byte[], String)

Updates the key value and key name for the credentials.

public void UpdateKey (byte[] keyValue, string keyName);
member this.UpdateKey : byte[] * string -> unit
Public Sub UpdateKey (keyValue As Byte(), keyName As String)

Parameters

keyValue
Byte[]

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

keyName
String

The key name to update.

Applies to

UpdateKey(String, String)

Updates the key value and key name for the credentials.

public void UpdateKey (string keyValue, string keyName);
member this.UpdateKey : string * string -> unit
Public Sub UpdateKey (keyValue As String, keyName As String)

Parameters

keyValue
String

The key value, as a Base64-encoded string, to update.

keyName
String

The key name to update.

Applies to