AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.4.1" />

.NET API 1,229,312 bytes

 DomError

public enum DomError
A collection of official DOM error codes.
using AngleSharp.Attributes; namespace AngleSharp.Dom { public enum DomError : ushort { [DomName("INDEX_SIZE_ERR")] [DomDescription("The index is not in the allowed range.")] IndexSizeError = 1, [DomHistorical] [DomDescription("The size of the string is invalid.")] [DomName("DOMSTRING_SIZE_ERR")] DomStringSize = 2, [DomName("HIERARCHY_REQUEST_ERR")] [DomDescription("The operation would yield an incorrect node tree.")] HierarchyRequest = 3, [DomDescription("The object is in the wrong document.")] [DomName("WRONG_DOCUMENT_ERR")] WrongDocument = 4, [DomName("INVALID_CHARACTER_ERR")] [DomDescription("Invalid character detected.")] InvalidCharacter = 5, [DomName("NO_DATA_ALLOWED_ERR")] [DomDescription("The data is allowed for this object.")] [DomHistorical] NoDataAllowed = 6, [DomName("NO_MODIFICATION_ALLOWED_ERR")] [DomDescription("The object can not be modified.")] NoModificationAllowed = 7, [DomDescription("The object can not be found here.")] [DomName("NOT_FOUND_ERR")] NotFound = 8, [DomDescription("The operation is not supported.")] [DomName("NOT_SUPPORTED_ERR")] NotSupported = 9, [DomDescription("The element is already in-use.")] [DomName("INUSE_ATTRIBUTE_ERR")] [DomHistorical] InUse = 10, [DomName("INVALID_STATE_ERR")] [DomDescription("The object is in an invalid state.")] InvalidState = 11, [DomName("SYNTAX_ERR")] [DomDescription("The string did not match the expected pattern.")] Syntax = 12, [DomName("INVALID_MODIFICATION_ERR")] [DomDescription("The object can not be modified in this way.")] InvalidModification = 13, [DomName("NAMESPACE_ERR")] [DomDescription("The operation is not allowed by namespaces in XML.")] Namespace = 14, [DomName("INVALID_ACCESS_ERR")] [DomDescription("The object does not support the operation or argument.")] InvalidAccess = 15, [DomName("VALIDATION_ERR")] [DomDescription("The validation failed.")] Validation = 15, [DomDescription("The provided argument type is invalid.")] [DomHistorical] [DomName("TYPE_MISMATCH_ERR")] TypeMismatch = 17, [DomName("SECURITY_ERR")] [DomDescription("The operation is insecure.")] Security = 18, [DomDescription("A network error occurred.")] [DomName("NETWORK_ERR")] Network = 19, [DomDescription("The operation was aborted.")] [DomName("ABORT_ERR")] Abort = 20, [DomDescription("The given URL does not match another URL.")] [DomName("URL_MISMATCH_ERR")] UrlMismatch = 21, [DomName("QUOTA_EXCEEDED_ERR")] [DomDescription("The quota has been exceeded.")] QuotaExceeded = 22, [DomDescription("The operation timed out.")] [DomName("TIMEOUT_ERR")] Timeout = 23, [DomName("INVALID_NODE_TYPE_ERR")] [DomDescription("The supplied node is incorrect or has an incorrect ancestor for this operation.")] InvalidNodeType = 24, [DomDescription("The object can not be cloned.")] [DomName("DATA_CLONE_ERR")] DataClone = 25 } }