Files
SabreTools.Serialization/SabreTools.Serialization.Readers
Deterous 5bb8557555 ZArchive support (#75)
* ZArchive support

* Fix offset record format

* Simplfiy Extensions

* Delete unused writers and test data

* Rework reader

* Fix build
2026-04-02 02:18:47 -04:00
..
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-21 16:26:56 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-31 00:01:44 -04:00
2026-03-31 00:01:44 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-29 21:55:23 -04:00
2026-03-21 16:26:56 -04:00
2026-03-21 16:26:56 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-04-02 02:18:47 -04:00
2026-03-24 19:17:25 -04:00

SabreTools.Serialization.Readers

This library contains methods for reading in data from various input sources into models that are defined in SabreTools.Data.Models.

Reader classes can inherit from one or more interfaces, as seen in the table below:

Interface Name Source Type Destination Type
SabreTools.Serialization.Readers.IByteReader<TModel> byte[]? TModel
SabreTools.Serialization.Readers.IFileReader<TModel> string? path TModel
SabreTools.Serialization.Readers.IStreamReader<TModel> Stream? TModel
SabreTools.Serialization.Readers.IStringReader<TModel> string? representation TModel