This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/MfGames.Nitride.Yaml/ParseYamlHeaderErrorHandlin...

15 lines
297 B
C#

namespace MfGames.Nitride.Yaml;
public enum ParseYamlHeaderErrorHandling
{
/// <summary>
/// Throw an exception if an error happens.
/// </summary>
Throw,
/// <summary>
/// If an error happens, then include without additional processing.
/// </summary>
Ignore,
}