Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Returns a task that performs an asynchronous operation to open a stream for writing to the file.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<CloudFileStream> OpenWriteAsync(
	Nullable<long> size
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<CloudFileStream^>^ OpenWriteAsync(
	Nullable<long long> size
)
 
[<DoesServiceRequestAttribute>]
abstract OpenWriteAsync : 
        size:Nullable<int64> -> Task<CloudFileStream>
[<DoesServiceRequestAttribute>]
override OpenWriteAsync : 
        size:Nullable<int64> -> Task<CloudFileStream>
 
<DoesServiceRequestAttribute>
Public Overridable Function OpenWriteAsync (
	size As Nullable(OfLong)
) As Task(Of CloudFileStream)

Parameters

size
Type: System.Nullable<Int64>System::Nullable<Int64>System.Nullable<Int64>System.Nullable(Of Int64)

The size of the file, in bytes. If null, the file must already exist.

Return to top