Files
SabreTools.Serialization/SabreTools.Serialization.Readers
HeroponRikiBestest 79ca9f617e Add sim parsing for Steam2 sim/sid installers (#95)
* Add model for sim file

* Add sim parsing for steam2 installer set

* First round of fixes
2026-07-06 09:21:17 -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-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-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-03-24 19:17:25 -04:00
2026-04-21 14:23:35 -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-27 13:28:23 -04:00
2026-03-24 19:17:25 -04:00
2026-04-28 09:26:49 -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-19 22:13:01 -04:00
2026-03-21 16:26:56 -04:00
2026-03-21 16:26:56 -04:00
2026-04-19 09:33:55 -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