Files
SabreTools.Serialization/SabreTools.Serialization.Readers
Deterous 0e5380ad1a Xbox ISO Support (#81)
* Xbox ISO support

* Fixes

* Print XGDType

* Review
2026-04-13 09:39:29 -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-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-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-04-06 18:51:09 -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-04-04 01:15:40 -04:00
2026-04-04 01:15:40 -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-04-13 09:39:29 -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: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