Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

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

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

Syntax

 
[DefaultOverloadAttribute]
public Uri TransformUri(
	Uri resourceUri
)
 
public:
[DefaultOverloadAttribute]
Uri^ TransformUri(
	Uri^ resourceUri
)
 
[<DefaultOverloadAttribute>]
member TransformUri : 
        resourceUri:Uri -> Uri
 
<DefaultOverloadAttribute>
Public Function TransformUri (
	resourceUri As Uri
) As Uri

Parameters

resourceUri
Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri object that represents the resource URI to be transformed.

Return Value

Type: System.UriSystem::Uri^System.UriSystem.Uri

A Uri object that represents the signature, including the resource URI and the shared access token.

Return to top