Interface IBufferPool
Use this interface to implement custom buffer pool.
To use the default buffer pool implementation use DefaultBufferPool class.
Assembly: Titanium.Web.Proxy.dll
Syntax
public interface IBufferPool : IDisposable
Properties
|
Edit this page
View Source
BufferSize
Declaration
Property Value
Methods
|
Edit this page
View Source
GetBuffer()
Declaration
Returns
|
Edit this page
View Source
GetBuffer(int)
Declaration
byte[] GetBuffer(int bufferSize)
Parameters
| Type |
Name |
Description |
| int |
bufferSize |
|
Returns
|
Edit this page
View Source
ReturnBuffer(byte[])
Declaration
void ReturnBuffer(byte[] buffer)
Parameters
| Type |
Name |
Description |
| byte[] |
buffer |
|