Hallo,
wo finde ich die folgende Enumeration:
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 [url=Codeplex BBCode]http://bbcode.codeplex.com[/url] hat nur einen Konstruktor der keine ErrorMode Enumeration akzeptiert. Die Enumeration selbst ist auch nicht enthalten.
Wo finde ich diese Klassen?