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

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