public enum ErrorMode { /// <summary> /// Every syntax error throws a BBCodeParsingException. /// </summary> Strict,
/// <summary> /// Syntax errors with obvious meaning will be corrected automatically. /// </summary> TryErrorCorrection,
/// <summary> /// The parser will never throw an exception. Invalid tags will be ignored. /// </summary> ErrorFree, }
Der Quell-Code auf Codeplex BBCode hat nur einen Konstruktor der keine ErrorMode Enumeration akzeptiert. Die Enumeration selbst ist auch nicht enthalten.