aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/IO/IMemoryStreamProvider.cs
blob: 1c0e98018ec35abc816cc926b7fbf6f98dc129d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.IO;

namespace MediaBrowser.Common.IO
{
    public interface IMemoryStreamProvider
    {
        MemoryStream CreateNew();
        MemoryStream CreateNew(int capacity);
        MemoryStream CreateNew(byte[] buffer);
    }
}