Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

An interface that allows clients to provide a buffer manager to a given service client. This interface is patterned after the System.ServiceModel.Channels.BufferManager class.

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

Syntax

 
public interface IBufferManager
 
public interface class IBufferManager
 
type IBufferManager = interface end
 
Public Interface IBufferManager

Methods

NameDescription
System_CAPS_pubmethodGetDefaultBufferSize()()()()

Gets the size, in bytes, of the buffers managed by the given pool. Note that the buffer manager must return buffers of the exact size requested by the client.

System_CAPS_pubmethodReturnBuffer(Byte[])(array<Byte>^)(Byte[])(Byte())

Returns a buffer to the pool.

System_CAPS_pubmethodTakeBuffer(Int32)(Int32)(Int32)(Int32)

Gets a buffer of the specified size or larger from the pool.

Return to top