StorageCredentials.TransformUri Method (Uri)

Windows Runtime Azure Storage Client Library

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)

Usage

Visual Basic
Dim instance As StorageCredentials
Dim resourceUri As Uri
Dim returnValue As Uri

returnValue = instance.TransformUri(resourceUri)

Syntax

Visual Basic
<DefaultOverloadAttribute> _
Public Function TransformUri ( _
	resourceUri As Uri _
) As Uri
C#
[DefaultOverloadAttribute] 
public Uri TransformUri (
	Uri resourceUri
)
C++
[DefaultOverloadAttribute] 
public:
Uri^ TransformUri (
	Uri^ resourceUri
)
J#
/** @attribute DefaultOverloadAttribute() */ 
public Uri TransformUri (
	Uri resourceUri
)
JScript
DefaultOverloadAttribute 
public function TransformUri (
	resourceUri : Uri
) : Uri

Parameters

resourceUri

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

Return Value

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also