Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation that gets a reference to a blob.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<ICloudBlob> GetBlobReferenceFromServerAsync(
	Uri blobUri
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<ICloudBlob^>^ GetBlobReferenceFromServerAsync(
	Uri^ blobUri
)
 
[<DoesServiceRequestAttribute>]
abstract GetBlobReferenceFromServerAsync : 
        blobUri:Uri -> Task<ICloudBlob>
[<DoesServiceRequestAttribute>]
override GetBlobReferenceFromServerAsync : 
        blobUri:Uri -> Task<ICloudBlob>
 
<DoesServiceRequestAttribute>
Public Overridable Function GetBlobReferenceFromServerAsync (
	blobUri As Uri
) As Task(Of ICloudBlob)

Parameters

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

A Uri containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.

Return to top