ClrMessages
ClrMessages.Instance (HResult.URT) contains Microsoft's HResult code descriptions for .NET CLR (Common Language Runtime) (URT facility).
HResult | Key | Text | Exception |
---|---|---|---|
0x8013152D | URT.COR_E_ABANDONEDMUTEX | The wait completed due to an abandoned mutex | System.Threading.AbandonedMutexException |
0x8013106A | URT.COR_E_AMBIGUOUSIMPLEMENTATION | There are multiple incompatible interface methods overriding another method. | System.Runtime.AmbiguousImplementationException |
0x80131014 | URT.COR_E_APPDOMAINUNLOADED | Attempted to access an unloaded appdomain. | System.AppDomainUnloadedException |
0x80131600 | URT.COR_E_APPLICATION | Application exception | System.ApplicationException |
0x80131502 | URT.COR_E_ARGUMENTOUTOFRANGE | An argument was out of its legal range. | System.ArgumentOutOfRangeException |
0x80131503 | URT.COR_E_ARRAYTYPEMISMATCH | Attempted to store an object of the wrong type in an array. | System.ArrayTypeMismatchException |
0x80131015 | URT.COR_E_CANNOTUNLOADAPPDOMAIN | Error while unloading appdomain. | System.CannotUnloadAppDomainException |
0x80131542 | URT.COR_E_CODECONTRACTFAILED | ||
0x80131504 | URT.COR_E_CONTEXTMARSHAL | Attempted to marshal an object across a context boundary. | System.ContextMarshalException |
0x80131605 | URT.COR_E_CUSTOMATTRIBUTEFORMAT | Custom attribute has invalid format. | System.Reflection.CustomAttributeFormatException |
0x80131541 | URT.COR_E_DATAMISALIGNED | A datatype misalignment was detected in a load or store instruction. | System.DataMisalignedException |
0x80131524 | URT.COR_E_DLLNOTFOUND | Could not find the specified DllImport Dll. | System.DllNotFoundException |
0x80131529 | URT.COR_E_DUPLICATEWAITOBJECT | An object appears more than once in the wait objects array. | System.DuplicateWaitObjectException |
0x80131523 | URT.COR_E_ENTRYPOINTNOTFOUND | Could not find the specified DllImport entrypoint. | System.EntryPointNotFoundException |
0x80131500 | URT.COR_E_EXCEPTION | General Exception | System.Exception |
0x80131506 | URT.COR_E_EXECUTIONENGINE | Internal CLR error. | System.ExecutionEngineException |
0x80131507 | URT.COR_E_FIELDACCESS | Access to this field is denied. | System.FieldAccessException |
0x80131621 | URT.COR_E_FILELOAD | Could not find or load a specific file. | System.IO.FileNotFoundException |
0x80131537 | URT.COR_E_FORMAT | One of the identified items was in an invalid format. | System.FormatException |
0x80131508 | URT.COR_E_INDEXOUTOFRANGE | Array subscript out of range. | System.IndexOutOfRangeException |
0x80131578 | URT.COR_E_INSUFFICIENTEXECUTIONSTACK | Insufficient stack to continue executing the program safely. This can happen from having too many functions on the call stack or function on the stack using too much stack space. | System.InsufficientExecutionStackException |
0x8013153D | URT.COR_E_INSUFFICIENTMEMORY | Not enough memory was available for an operation. | System.InsufficientMemoryException |
0x80131527 | URT.COR_E_INVALIDCOMOBJECT | An invalid __ComObject has been used. | System.Runtime.InteropServices.InvalidComObjectException |
0x80131601 | URT.COR_E_INVALIDFILTERCRITERIA | The given filter criteria does not match the filter content. | System.Reflection.InvalidFilterCriteriaException |
0x80131531 | URT.COR_E_INVALIDOLEVARIANTTYPE | OLE Variant has an invalid type. | System.Runtime.InteropServices.InvalidOleVariantTypeException |
0x80131509 | URT.COR_E_INVALIDOPERATION | An operation is not legal in the current state. | System.InvalidOperationException |
0x8013153A | URT.COR_E_INVALIDPROGRAM | Invalid IL or CLR metadata. A program contained invalid IL or bad metadata. Usually this is a compiler bug. | System.InvalidProgramException |
0x80131620 | URT.COR_E_IO | Error during managed I/O. | System.IO.IOException |
0x80131577 | URT.COR_E_KEYNOTFOUND | The given key was not present in the dictionary. | System.Collections.Generic.KeyNotFoundException |
0x80131535 | URT.COR_E_MARSHALDIRECTIVE | Invalid marshaling directives. | |
0x8013151A | URT.COR_E_MEMBERACCESS | A datatype misalignment was detected in a load or store instruction. | System.MemberAccessException |
0x80131510 | URT.COR_E_METHODACCESS | Access to this method is denied. | System.MethodAccessException |
0x80131511 | URT.COR_E_MISSINGFIELD | Field does not exist. | System.MissingFieldException |
0x80131532 | URT.COR_E_MISSINGMANIFESTRESOURCE | An expected resource in the assembly manifest was missing. | System.Resources.MissingManifestResourceException |
0x80131512 | URT.COR_E_MISSINGMEMBER | Member does not exist. | System.MissingMemberException |
0x80131513 | URT.COR_E_MISSINGMETHOD | Method does not exist. | System.MissingMethodException |
0x80131536 | URT.COR_E_MISSINGSATELLITEASSEMBLY | An expected satellite assembly containing the ultimate fallback resources for a given culture was not found or could not be loaded. | System.Resources.MissingSatelliteAssemblyException |
0x80131514 | URT.COR_E_MULTICASTNOTSUPPORTED | Attempt to combine delegates that are not multicast. | System.MulticastNotSupportedException |
0x80131528 | URT.COR_E_NOTFINITENUMBER | Not a Number. | System.NotFiniteNumberException |
0x80131515 | URT.COR_E_NOTSUPPORTED | Operation is not supported. | System.NotSupportedException |
0x80131622 | URT.COR_E_OBJECTDISPOSED | The object has already been disposed. | System.ObjectDisposedException |
0x8013153B | URT.COR_E_OPERATIONCANCELED | The operation was cancelle | System.OperationCanceledException |
0x80131516 | URT.COR_E_OVERFLOW | Arithmetic, casting or conversion operation overflowed or underflowed. | System.OverflowException |
0x80131539 | URT.COR_E_PLATFORMNOTSUPPORTED | Operation is not supported on this platform. | System.PlatformNotSupportedException |
0x80131517 | URT.COR_E_RANK | An array has the wrong number of dimensions for a particular operation. | System.RankException |
0x80131602 | URT.COR_E_REFLECTIONTYPELOAD | Could not find or load a specific class that was requested through Reflection. | System.Reflection.ReflectionTypeLoadException |
0x8013153E | URT.COR_E_RUNTIMEWRAPPED | An object that does not derive from System.Exception has been wrapped in a RuntimeWrappedException. | System.Runtime.CompilerServices.RuntimeWrappedException |
0x80131538 | URT.COR_E_SAFEARRAYRANKMISMATCH | A mismatch has occurred between the runtime rank of the array and the rank recorded in the metadata. | System.Runtime.InteropServices.SafeArrayTypeMismatchException |
0x80131533 | URT.COR_E_SAFEARRAYTYPEMISMATCH | A mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata. | System.Runtime.InteropServices.SafeArrayRankMismatchException |
0x8013150A | URT.COR_E_SECURITY | OLE Variant has an invalid type. | System.Security.SecurityException |
0x8013150C | URT.COR_E_SERIALIZATION | A mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata. | System.Runtime.Serialization.SerializationException |
0x80131518 | URT.COR_E_SYNCHRONIZATIONLOCK | This operation must be called from a synchronized block. | System.Threading.SynchronizationLockException |
0x80131501 | URT.COR_E_SYSTEM | System error. | System.SystemException |
0x80131603 | URT.COR_E_TARGET | Attempt to invoke non-static method with a null Object. | System.Reflection.TargetException |
0x80131604 | URT.COR_E_TARGETINVOCATION | Uncaught exception thrown by method called through Reflection. | System.Reflection.TargetInvocationException |
0x80131530 | URT.COR_E_THREADABORTED | Thread has aborted. | System.Threading.ThreadAbortException |
0x80131519 | URT.COR_E_THREADINTERRUPTED | Thread was interrupted from a waiting state. | System.Threading.ThreadInterruptedException |
0x80131525 | URT.COR_E_THREADSTART | Indicate that a user thread fails to start | System.Threading.ThreadStartException |
0x80131520 | URT.COR_E_THREADSTATE | Thread is in an invalid state for this operation. | System.Threading.ThreadStateException |
0x80131505 | URT.COR_E_TIMEOUT | Operation timed out. | System.TimeoutException |
0x80131543 | URT.COR_E_TYPEACCESS | Access to this type is denied. | System.TypeAccessException |
0x80131534 | URT.COR_E_TYPEINITIALIZATION | Uncaught exception during type initialization. | System.TypeInitializationException |
0x80131522 | URT.COR_E_TYPELOAD | Could not find or load a type. | System.TypeLoadException |
0x80131013 | URT.COR_E_TYPEUNLOADED | Type has been unloaded. | System.TypeUnloadedException |
0x8013150D | URT.COR_E_VERIFICATION | Uncaught exception during type initialization. | System.Security.VerificationException |
0x8013152C | URT.COR_E_WAITHANDLECANNOTBEOPENED | No Semaphore of the given name exists | System.Threading.WaitHandleCannotBeOpenedException |
This document is partially derived from work with following license.
/*This file is a derivate of a source file that has following license (below). ======================================================================== The MIT License (MIT) Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================*/