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