9 lines
208 B
C#
9 lines
208 B
C#
namespace FileTime.Core.ContentAccess;
|
|
|
|
public interface IContentWriter : IDisposable
|
|
{
|
|
int PreferredBufferSize { get; }
|
|
|
|
Task WriteBytesAsync(byte[] data, int? index = null);
|
|
Task FlushAsync();
|
|
} |