Files
QWERTYkez.OpenXmlProcessors/QWERTYkez.WordProcessor/IWordReader.cs

14 lines
341 B
C#
Raw Normal View History

namespace QWERTYkez.WordProcessor;
public interface IWordReader
{
long DocumentSize { get; }
string? FilePath { get; }
bool IsValid { get; }
ISet<string> FindPlaceholders();
bool TryWrite(string destinationPath, Action<IWordWriter> action);
bool TryWrite(Action<IWordWriter> write, Action<IWordReader> read);
}