There are currently two unimplemented template files (for reading .doc and .docx, and .pdf files, respectively)
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.
|
public sealed class PdfReader : ILineReader |
|
{ |
|
/// <inheritdoc /> |
|
public IAsyncEnumerable<string?> ReadLineAsync(CancellationToken cancellation = default) |
|
=> throw new NotImplementedException(); |
|
|
|
/// <inheritdoc /> |
|
public ValueTask DisposeAsync() |
|
=> ValueTask.CompletedTask; |
|
} |
|
public sealed class DocumentReader : ILineReader |
|
{ |
|
/// <inheritdoc /> |
|
public IAsyncEnumerable<string?> ReadLineAsync(CancellationToken cancellation = default) |
|
=> throw new NotImplementedException(); |
|
|
|
/// <inheritdoc /> |
|
public ValueTask DisposeAsync() |
|
=> ValueTask.CompletedTask; |
|
} |
There are currently two unimplemented template files (for reading
.docand.docx, and.pdffiles, respectively).odtfiles.docfiles.docxfiles.pdffiles.pptfiles.pptxfilesReading 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
EmailAddressExtractor/src/Objects/Readers/DocumentReader.cs
Lines 2 to 11 in 9d9efa8