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 in this container.

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

Syntax

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

Parameters

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

A string containing the name of the blob.

Return to top