Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Returns a shared access signature for the blob.

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

Syntax

 
string GetSharedAccessSignature(
	SharedAccessBlobPolicy policy,
	string groupPolicyIdentifier
)
 
String^ GetSharedAccessSignature(
	SharedAccessBlobPolicy^ policy,
	String^ groupPolicyIdentifier
)
 
abstract GetSharedAccessSignature : 
        policy:SharedAccessBlobPolicy *
        groupPolicyIdentifier:string -> string
 
Function GetSharedAccessSignature (
	policy As SharedAccessBlobPolicy,
	groupPolicyIdentifier As String
) As String

Return Value

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

A shared access signature, as a URI query string.

Remarks

The query string returned includes the leading question mark.

Return to top