Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Ends an asynchronous operation to open a stream for reading from the file.

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

Syntax

 
public virtual Stream EndOpenRead(
	IAsyncResult asyncResult
)
 
public:
virtual Stream^ EndOpenRead(
	IAsyncResult^ asyncResult
)
 
abstract EndOpenRead : 
        asyncResult:IAsyncResult -> Stream
override EndOpenRead : 
        asyncResult:IAsyncResult -> Stream
 
Public Overridable Function EndOpenRead (
	asyncResult As IAsyncResult
) As Stream

Parameters

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

An IAsyncResult that references the pending asynchronous operation.

Return Value

Type: System.IO.StreamSystem.IO::Stream^System.IO.StreamSystem.IO.Stream

A stream to be used for reading from the file.

Return to top