![]() |
NanoXLSX.Reader 3.0.0-rc.2
|
Class representing a reader to decompile XLSX files. More...
Public Member Functions | |
| XlsxReader (string path, ReaderOptions options=null) | |
| Constructor with file path as parameter. | |
| XlsxReader (Stream stream, ReaderOptions options=null) | |
| Constructor with stream as parameter. | |
| void | Read () |
| Reads the XLSX file from a file path or a file stream. | |
| async Task | ReadAsync () |
| Reads the XLSX file from a file path or a file stream asynchronously. | |
| void | Dispose () |
| Disposes the XlsxReader instance. | |
Properties | |
| Workbook | Workbook [get, set] |
| Gets the read workbook. | |
Class representing a reader to decompile XLSX files.
Definition at line 27 of file XlsxReader.cs.
| NanoXLSX.Internal.Readers.XlsxReader.XlsxReader | ( | string | path, |
| ReaderOptions | options = null ) |
Constructor with file path as parameter.
| options | Reader options to override the automatic approach of the reader. ReaderOptions for information about Reader options. |
| path | File path of the XLSX file to load |
Definition at line 49 of file XlsxReader.cs.
| NanoXLSX.Internal.Readers.XlsxReader.XlsxReader | ( | Stream | stream, |
| ReaderOptions | options = null ) |
Constructor with stream as parameter.
| options | Reader options to override the automatic approach of the reader. ReaderOptions for information about Reader options. |
| stream | Stream of the XLSX file to load |
Definition at line 60 of file XlsxReader.cs.
| void NanoXLSX.Internal.Readers.XlsxReader.Dispose | ( | ) |
Disposes the XlsxReader instance.
Definition at line 347 of file XlsxReader.cs.
| void NanoXLSX.Internal.Readers.XlsxReader.Read | ( | ) |
Reads the XLSX file from a file path or a file stream.
| NanoXLSX.Exceptions.IOException | Throws IOException in case of an error |
Definition at line 75 of file XlsxReader.cs.
| async Task NanoXLSX.Internal.Readers.XlsxReader.ReadAsync | ( | ) |
Reads the XLSX file from a file path or a file stream asynchronously.
| NanoXLSX.Exceptions.IOException | May throw an IOException in case of an error. The asynchronous operation may hide the exception. |
Definition at line 105 of file XlsxReader.cs.
|
getset |
Gets the read workbook.
Definition at line 40 of file XlsxReader.cs.