2016-10-06 18:55:01 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
2016-10-23 19:14:57 +00:00
|
|
|
|
namespace MediaBrowser.Model.IO
|
2016-10-06 18:55:01 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IMemoryStreamProvider
|
|
|
|
|
{
|
|
|
|
|
MemoryStream CreateNew();
|
|
|
|
|
MemoryStream CreateNew(int capacity);
|
|
|
|
|
MemoryStream CreateNew(byte[] buffer);
|
|
|
|
|
}
|
|
|
|
|
}
|