12 lines
256 B
C#
12 lines
256 B
C#
|
using System.IO;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MediaBrowser.Model.Services
|
|||
|
{
|
|||
|
public interface IAsyncStreamWriter
|
|||
|
{
|
|||
|
Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken);
|
|||
|
}
|
|||
|
}
|