BufferManager.TakeBuffer(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a buffer of at least the specified size from the pool.
public:
abstract cli::array <System::Byte> ^ TakeBuffer(int bufferSize);
public abstract byte[] TakeBuffer (int bufferSize);
abstract member TakeBuffer : int -> byte[]
Public MustOverride Function TakeBuffer (bufferSize As Integer) As Byte()
Parameters
- bufferSize
- Int32
The size, in bytes, of the requested buffer.
Returns
Byte[]
A byte array that is the requested size of the buffer.
Exceptions
bufferSize
cannot be less than zero.
Remarks
If successful, the system returns a byte array buffer of at least the requested size.
Applies to
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.