namespace Ganss.Xss; /// /// List of reasons why something was identified to get removed from the HTML. /// public enum RemoveReason { /// /// Tag is not allowed. /// NotAllowedTag, /// /// Attribute is not allowed. /// NotAllowedAttribute, /// /// Style is not allowed. /// NotAllowedStyle, /// /// Value is a non-allowed or harmful URL. /// NotAllowedUrlValue, /// /// Value is not allowed or harmful. /// NotAllowedValue, /// /// CSS class is not allowed. /// NotAllowedCssClass, /// /// The class attribute is empty. /// ClassAttributeEmpty, /// /// The style attribute is empty. /// StyleAttributeEmpty, }