Files
SabreTools.Serialization/SabreTools.Serialization.Readers
Deterous 388567c9c6 Initial XEX support (#77)
* Initial XEX support

* Fix build

* Fix reader

* Fix reader, again

* Rename field to CertificateOffset

* Update reader

* Update Printer

* Update Printer

* Parse Certificate

* More info

* Fix build
2026-04-06 10:43:32 -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-29 21:55:23 -04:00
2026-03-21 16:26:56 -04:00
2026-04-06 10:43:32 -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:23:02 -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