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/Nitride.Yaml/ParseYamlHeaderErrorHandling.cs
2022-07-18 20:06:08 -05:00

15 lines
289 B
C#

namespace 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,
}