StorageCredentials Class

Definition

Represents a set of credentials used to authenticate access to a Microsoft Azure storage account.

public sealed class StorageCredentials
type StorageCredentials = class
Public NotInheritable Class StorageCredentials
Inheritance
StorageCredentials

Constructors

StorageCredentials()

Initializes a new instance of the StorageCredentials class.

StorageCredentials(String)

Initializes a new instance of the StorageCredentials class with the specified shared access signature token.

StorageCredentials(String, String)

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

StorageCredentials(String, String, String)

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

Properties

AccountName

Gets the associated account name for the credentials.

IsAnonymous

Gets a value indicating whether the credentials are for anonymous access.

IsSAS

Gets a value indicating whether the credentials are a shared access signature token.

IsSharedKey

Gets a value indicating whether the credentials are a shared key.

Key

Gets the associated key for the credentials.

KeyName

Gets the associated key name for the credentials.

SASSignature

Gets the value of the shared access signature token's sig parameter.

SASToken

Gets the associated shared access signature token for the credentials.

Methods

Equals(StorageCredentials)

Determines whether an other StorageCredentials object is equal to this one by comparing their SAS tokens, account names, key names, and key values.

TransformUri(StorageUri)

Transforms a resource URI into a shared access signature URI, by appending a shared access token.

TransformUri(Uri)

Transforms a resource URI into a shared access signature URI, by appending a shared access token.

UpdateKey(String)

Updates the key value for the credentials.

UpdateKey(String, String)

Updates the key value and key name for the credentials.

UpdateSASToken(String)

Updates the shared access signature (SAS) token value for storage credentials created with a shared access signature.

Applies to