Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Ends an asynchronous operation to download the blob's contents as a string.

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

Syntax

 
public virtual string EndDownloadText(
	IAsyncResult asyncResult
)
 
public:
virtual String^ EndDownloadText(
	IAsyncResult^ asyncResult
)
 
abstract EndDownloadText : 
        asyncResult:IAsyncResult -> string
override EndDownloadText : 
        asyncResult:IAsyncResult -> string
 
Public Overridable Function EndDownloadText (
	asyncResult As IAsyncResult
) As String

Parameters

asyncResult
Type: System.IAsyncResultSystem::IAsyncResult^System.IAsyncResultSystem.IAsyncResult

An IAsyncResult that references the pending asynchronous operation.

Return Value

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

The contents of the blob, as a string.

Return to top