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 StorageUri
Dim returnValue As StorageUri
returnValue = instance.TransformUri(resourceUri) |
Syntax
Visual Basic |
---|
Public Function TransformUri ( _
resourceUri As StorageUri _
) As StorageUri |
C# |
---|
public StorageUri TransformUri (
StorageUri resourceUri
) |
C++ |
---|
public:
StorageUri^ TransformUri (
StorageUri^ resourceUri
) |
J# |
---|
public StorageUri TransformUri (
StorageUri resourceUri
) |
JScript |
---|
public function TransformUri (
resourceUri : StorageUri
) : StorageUri |
Parameters
- resourceUri
A StorageUri object that represents the resource URI to be transformed.
Return Value
A
StorageUri 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
See Also