AngleSharp by AngleSharp

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

.NET API 1,261,568 bytes

 DomError

public enum DomError
A collection of official DOM error codes.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("DOMError")] public enum DomError : ushort { [DomName("INDEX_SIZE_ERR")] [DomDescription("The index is not in the allowed range.")] IndexSizeError = 1, [DomDescription("The size of the string is invalid.")] [DomName("DOMSTRING_SIZE_ERR")] [DomHistorical] 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")] [DomHistorical] [DomDescription("The data is allowed for this object.")] NoDataAllowed = 6, [DomDescription("The object can not be modified.")] [DomName("NO_MODIFICATION_ALLOWED_ERR")] NoModificationAllowed = 7, [DomName("NOT_FOUND_ERR")] [DomDescription("The object can not be found here.")] NotFound = 8, [DomDescription("The operation is not supported.")] [DomName("NOT_SUPPORTED_ERR")] NotSupported = 9, [DomDescription("The element is already in-use.")] [DomHistorical] [DomName("INUSE_ATTRIBUTE_ERR")] InUse = 10, [DomDescription("The object is in an invalid state.")] [DomName("INVALID_STATE_ERR")] InvalidState = 11, [DomName("SYNTAX_ERR")] [DomDescription("The string did not match the expected pattern.")] Syntax = 12, [DomDescription("The object can not be modified in this way.")] [DomName("INVALID_MODIFICATION_ERR")] 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, [DomDescription("The validation failed.")] [DomName("VALIDATION_ERR")] Validation = 15, [DomName("TYPE_MISMATCH_ERR")] [DomHistorical] [DomDescription("The provided argument type is invalid.")] TypeMismatch = 17, [DomDescription("The operation is insecure.")] [DomName("SECURITY_ERR")] Security = 18, [DomDescription("A network error occurred.")] [DomName("NETWORK_ERR")] Network = 19, [DomDescription("The operation was aborted.")] [DomName("ABORT_ERR")] Abort = 20, [DomName("URL_MISMATCH_ERR")] [DomDescription("The given URL does not match another URL.")] UrlMismatch = 21, [DomDescription("The quota has been exceeded.")] [DomName("QUOTA_EXCEEDED_ERR")] QuotaExceeded = 22, [DomDescription("The operation timed out.")] [DomName("TIMEOUT_ERR")] Timeout = 23, [DomDescription("The supplied node is incorrect or has an incorrect ancestor for this operation.")] [DomName("INVALID_NODE_TYPE_ERR")] InvalidNodeType = 24, [DomName("DATA_CLONE_ERR")] [DomDescription("The object can not be cloned.")] DataClone = 25 } }