9 lines
194 B
C#
9 lines
194 B
C#
namespace FileTime.Core.Providers
|
|
{
|
|
public interface IContentReader : IDisposable
|
|
{
|
|
int PreferredBufferSize { get; }
|
|
|
|
Task<byte[]> ReadBytesAsync(int bufferSize);
|
|
}
|
|
} |