Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudTableClient.AuthenticationScheme Property (Microsoft.WindowsAzure.Storage.Table)

Gets or sets the authentication scheme to use to sign HTTP requests.

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

Syntax

 
public AuthenticationScheme AuthenticationScheme { get; set; }
 
public:
property AuthenticationScheme AuthenticationScheme {
	AuthenticationScheme get();
	void set(AuthenticationScheme value);
}
 
member AuthenticationScheme : AuthenticationScheme with get, set
 
Public Property AuthenticationScheme As AuthenticationScheme

Remarks

This property is set only when Shared Key or Shared Key Lite credentials are used; it does not apply to authentication via a shared access signature or anonymous access.

Note that if you are using the legacy Table service API, which is based on WCF Data Services, the authentication scheme used by the !:TableServiceContextReferenced topic's target id should not be empty. Article id: 8b591905-6ce4-4e8e-80dc-798e2b9f4614, link: !:TableServiceContext. object will always be Shared Key Lite, regardless of the value of this property.

Return to top