C#
C++
F#
VB
CloudFile.::..DownloadToStreamAsync Method (Stream, AccessCondition, FileRequestOptions, OperationContext)(Stream^, AccessCondition^, FileRequestOptions^, OperationContext^)(Stream, AccessCondition, FileRequestOptions, OperationContext)(Stream, AccessCondition, FileRequestOptions, OperationContext)
Returns a task that performs an asynchronous operation to download the contents of a file to a stream.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute] public virtual Task DownloadToStreamAsync( Stream target, AccessCondition accessCondition, FileRequestOptions options, OperationContext operationContext )
C++
public: [DoesServiceRequestAttribute] virtual Task^ DownloadToStreamAsync( Stream^ target, AccessCondition^ accessCondition, FileRequestOptions^ options, OperationContext^ operationContext )
[<DoesServiceRequestAttribute>] abstract DownloadToStreamAsync : target:Stream * accessCondition:AccessCondition * options:FileRequestOptions * operationContext:OperationContext -> Task [<DoesServiceRequestAttribute>] override DownloadToStreamAsync : target:Stream * accessCondition:AccessCondition * options:FileRequestOptions * operationContext:OperationContext -> Task
<DoesServiceRequestAttribute> Public Overridable Function DownloadToStreamAsync ( target As Stream, accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext ) As Task
Parameters
- target
-
Type:
System.IO.StreamSystem.IO::Stream^System.IO.StreamSystem.IO.Stream
The target stream.
- accessCondition
-
Type:
Microsoft.WindowsAzure.Storage.AccessConditionMicrosoft.WindowsAzure.Storage::AccessCondition^Microsoft.WindowsAzure.Storage.AccessConditionMicrosoft.WindowsAzure.Storage.AccessCondition
An AccessCondition object that represents the access conditions for the file. If null, no condition is used.
- options
-
Type:
Microsoft.WindowsAzure.Storage.File.FileRequestOptionsMicrosoft.WindowsAzure.Storage.File::FileRequestOptions^Microsoft.WindowsAzure.Storage.File.FileRequestOptionsMicrosoft.WindowsAzure.Storage.File.FileRequestOptions
A FileRequestOptions object that specifies additional options for the request.
- operationContext
-
Type:
Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext
An OperationContext object that represents the context for the current operation.
Return Value
Type: System.Threading.Tasks.TaskSystem.Threading.Tasks::Task^System.Threading.Tasks.TaskSystem.Threading.Tasks.TaskA Task object that represents the current operation.