Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Returns a buffer to the pool.

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

Syntax

 
void ReturnBuffer(
	byte[] buffer
)
 
void ReturnBuffer(
	array<unsigned char>^ buffer
)
 
abstract ReturnBuffer : 
        buffer:byte[] -> unit
 
Sub ReturnBuffer (
	buffer As Byte()
)

Parameters

buffer
Type: System.Byte[]array<System::Byte>^System.Byte[]System.Byte()

A byte array specifying the buffer to return to the pool.

Exceptions

Exception Condition
ArgumentNullException

Buffer reference cannot be null.

ArgumentException

Length of buffer does not match the pool's buffer length property.

Return to top