Interface IMemoryStreamFactory
A factory for creating memory streams
Assembly: OpenSearch.Net.dll
Syntax
public interface IMemoryStreamFactory
Methods
|
Edit this page
View Source
Create()
Declaration
Returns
|
Edit this page
View Source
Create(byte[])
Creates a memory stream with the bytes written to the stream
Declaration
MemoryStream Create(byte[] bytes)
Parameters
Type |
Name |
Description |
byte[] |
bytes |
|
Returns
|
Edit this page
View Source
Create(byte[], int, int)
Creates a memory stream with the bytes written to the stream
Declaration
MemoryStream Create(byte[] bytes, int index, int count)
Parameters
Type |
Name |
Description |
byte[] |
bytes |
|
int |
index |
|
int |
count |
|
Returns
Extension Methods