mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
12 lines
240 B
C#
12 lines
240 B
C#
|
|
using System.IO;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Common.IO
|
|||
|
|
{
|
|||
|
|
public interface IMemoryStreamProvider
|
|||
|
|
{
|
|||
|
|
MemoryStream CreateNew();
|
|||
|
|
MemoryStream CreateNew(int capacity);
|
|||
|
|
MemoryStream CreateNew(byte[] buffer);
|
|||
|
|
}
|
|||
|
|
}
|