StorageCredentials.Equals Method (StorageCredentials) (Microsoft.WindowsAzure.Storage.Auth)

From Microsoft.WindowsAzure.Storage.Queue

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

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

Syntax

 
public bool Equals(
	StorageCredentials other
)
 
public:
bool Equals(
	StorageCredentials^ other
)
 
member Equals : 
        other:StorageCredentials -> bool
 
Public Function Equals (
	other As StorageCredentials
) As Boolean

Return Value

Type: System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean

true if the two StorageCredentials objects are equal; otherwise, false.

Return to top