Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Ends an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

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

Syntax

 
public virtual void EndAppendFromByteArray(
	IAsyncResult asyncResult
)
 
public:
virtual void EndAppendFromByteArray(
	IAsyncResult^ asyncResult
)
 
abstract EndAppendFromByteArray : 
        asyncResult:IAsyncResult -> unit
override EndAppendFromByteArray : 
        asyncResult:IAsyncResult -> unit
 
Public Overridable Sub EndAppendFromByteArray (
	asyncResult As IAsyncResult
)

Parameters

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

An IAsyncResult that references the pending asynchronous operation.

Return to top