-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
There are currently two unimplemented template files (for reading .doc and .docx, and .pdf files, respectively)
-
.odtfiles -
.docfiles -
.docxfiles -
.pdffiles -
.pptfiles -
.pptxfiles
Reading Word documents and PDF files are a bit less straight-forward than plaintext files. A library that is compatible with the license for this project may be advisible.
EmailAddressExtractor/src/Objects/Readers/PdfReader.cs
Lines 2 to 11 in 9d9efa8
| public sealed class PdfReader : ILineReader | |
| { | |
| /// <inheritdoc /> | |
| public IAsyncEnumerable<string?> ReadLineAsync(CancellationToken cancellation = default) | |
| => throw new NotImplementedException(); | |
| /// <inheritdoc /> | |
| public ValueTask DisposeAsync() | |
| => ValueTask.CompletedTask; | |
| } |
EmailAddressExtractor/src/Objects/Readers/DocumentReader.cs
Lines 2 to 11 in 9d9efa8
| public sealed class DocumentReader : ILineReader | |
| { | |
| /// <inheritdoc /> | |
| public IAsyncEnumerable<string?> ReadLineAsync(CancellationToken cancellation = default) | |
| => throw new NotImplementedException(); | |
| /// <inheritdoc /> | |
| public ValueTask DisposeAsync() | |
| => ValueTask.CompletedTask; | |
| } |
Metadata
Metadata
Assignees
Labels
No labels