Skip to main content

A full list of HRESULTs

To save everyone from looking things up from corerror.h and mscorrc.dll, I made a table consists of every error HRESULT in .NET 4.0 and their corresponding error message (extracted by a little tool I wrote). Note that there are some HRESULTs don’t have corresponding resource strings as they don’t follow the rules I talked about above and those are listed as N/A in the table below.

HRESULT #define nameValueError message
CEE_E_ENTRYPOINT0x80131000Invalid entrypoint information.
CEE_E_CVTRES_NOT_FOUND0x80131001cvtres.exe not found.
MSEE_E_LOADLIBFAILED0x80131010Failed to delayload a library.
MSEE_E_GETPROCFAILED0x80131011Failed to get dll entrypoint.
MSEE_E_MULTCOPIESLOADED0x80131012Multiple copies of mscoree.dll have been loaded into the same process.
COR_E_TYPEUNLOADED0x80131013Type has been unloaded.
COR_E_APPDOMAINUNLOADED0x80131014Attempted to access an unloaded appdomain.
COR_E_CANNOTUNLOADAPPDOMAIN0x80131015Error while unloading appdomain.
MSEE_E_ASSEMBLYLOADINPROGRESS0x80131016Assembly is still being loaded.
MSEE_E_CANNOTCREATEAPPDOMAIN0x80131017Attempt to create appdomain failed.
COR_E_ASSEMBLYEXPECTED0x80131018The module was expected to contain an assembly manifest.
COR_E_FIXUPSINEXE0x80131019Attempt to load an unverifiable executable with fixups (IAT with more than 2 sections or a TLS section.)
COR_E_NO_LOADLIBRARY_ALLOWED0x8013101aThe private assembly was located outside the appbase directory.
COR_E_NEWER_RUNTIME0x8013101bA module specified in the manifest was not found.
COR_E_CANNOT_SET_POLICY0x8013101cModules which are not in the manifest were streamed in.
COR_E_CANNOT_SPECIFY_EVIDENCE0x8013101dA strongly-named assembly is required.
COR_E_MULTIMODULEASSEMBLIESDIALLOWED0x8013101eStrong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key.
HOST_E_DEADLOCK0x80131020Host detected a deadlock on a blocking operation.
HOST_E_INTERRUPTED0x80131021Host interrupted a wait.
HOST_E_INVALIDOPERATION0x80131022Invalid operation.
HOST_E_CLRNOTAVAILABLE0x80131023CLR has been disabled due to unrecoverable error.
HOST_E_TIMEOUT0x80131024A wait has timed out.
HOST_E_NOT_OWNER0x80131025The leave operation has been attempted on a synchronization primitive that is not owned by the current thread.
HOST_E_ABANDONED0x80131026An event has been abandoned.
HOST_E_EXITPROCESS_THREADABORT0x80131027Process exited due to ThreadAbort escalation.
HOST_E_EXITPROCESS_ADUNLOAD0x80131028Process exited due to AD Unload escalation.
HOST_E_EXITPROCESS_TIMEOUT0x80131029Process exited due to Timeout escalation.
HOST_E_EXITPROCESS_OUTOFMEMORY0x8013102aLoadFrom(), LoadFile(), Load(byte[]) and LoadModule() have been disabled by the host.
HOST_E_EXITPROCESS_STACKOVERFLOW0x8013102bFailed to add file to AppDomain cache.
COR_E_MODULE_HASH_CHECK_FAILED0x80131039The check of the module's hash failed.
FUSION_E_REF_DEF_MISMATCH0x80131040The located assembly's manifest definition does not match the assembly reference.
FUSION_E_INVALID_PRIVATE_ASM_LOCATION0x80131041The private assembly was located outside the appbase directory.
FUSION_E_ASM_MODULE_MISSING0x80131042A module specified in the manifest was not found.
FUSION_E_UNEXPECTED_MODULE_FOUND0x80131043Modules which are not in the manifest were streamed in.
FUSION_E_PRIVATE_ASM_DISALLOWED0x80131044A strongly-named assembly is required.
FUSION_E_SIGNATURE_CHECK_FAILED0x80131045Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key.
FUSION_E_DATABASE_ERROR0x80131046An unexpected error was encountered in the Assembly Cache database.
FUSION_E_INVALID_NAME0x80131047The given assembly name or codebase was invalid.
FUSION_E_CODE_DOWNLOAD_DISABLED0x80131048HTTP download of assemblies has been disabled for this appdomain.
FUSION_E_UNINSTALL_DISALLOWED0x80131049Uninstall of given assembly is not allowed.
FUSION_E_HOST_GAC_ASM_MISMATCH0x80131050Assembly in host store has a different signature than assembly in GAC.
FUSION_E_LOADFROM_BLOCKED0x80131051LoadFrom(), LoadFile(), Load(byte[]) and LoadModule() have been disabled by the host.
FUSION_E_CACHEFILE_FAILED0x80131052Failed to add file to AppDomain cache.
FUSION_E_APP_DOMAIN_LOCKED0x80131053The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest.
FUSION_E_CONFIGURATION_ERROR0x80131054The requested assembly name was neither found in the GAC nor in the manifest or the manifest's specified location is wrong.
FUSION_E_MANIFEST_PARSE_ERROR0x80131055Unexpected error while parsing the specified manifest.
FUSION_E_INVALID_ASSEMBLY_REFERENCE0x80131056The given assembly name is invalid because a processor architecture is specified.
COR_E_ASSEMBLY_NOT_EXPECTED0x80131057The module was expected to not contain an assembly manifest.
COR_E_LOADING_REFERENCE_ASSEMBLY0x80131058Reference assemblies should not be loaded for execution. They can only be loaded in the Reflection-only loader context.
CLDB_E_FILE_BADREAD0x80131100Error occurred during a read.
CLDB_E_FILE_BADWRITE0x80131101Error occurred during a write.
CLDB_E_FILE_READONLY0x80131103File is read only.
CLDB_E_NAME_ERROR0x80131105Ill-formed name.
CLDB_E_TRUNCATION0x80131106Data value was truncated.
CLDB_E_FILE_OLDVER0x80131107Old version error.
CLDB_E_RELOCATED0x80131108A shared memory open failed to open at the originally assigned memory address.
CLDB_E_SMDUPLICATE0x8013110aToo many records were returned for criteria.
CLDB_E_NO_DATA0x8013110bRecord is a duplicate.
CLDB_E_READONLY0x8013110cPrimary key value is required.
CLDB_E_INCOMPATIBLE0x8013110dRecord is valid but deleted.
CLDB_E_FILE_CORRUPT0x8013110eRecord is emitted out of order.
CLDB_E_SCHEMA_VERNOTFOUND0x8013110fN/A
CLDB_E_BADUPDATEMODE0x80131110Cannot open a incrementally build scope for full update.
CLDB_E_INDEX_NONULLKEYS0x80131121Null value not allowed in unique index or primary key.
CLDB_E_INDEX_DUPLICATE0x80131122Index has been duplicated.
CLDB_E_INDEX_BADTYPE0x80131123The columns data type is not allowed in an index.
CLDB_E_INDEX_NOTFOUND0x80131124Index not found.
CLDB_E_RECORD_NOTFOUND0x80131130Record not found on lookup.
CLDB_E_RECORD_OVERFLOW0x80131131Too many records were returned for criteria.
CLDB_E_RECORD_DUPLICATE0x80131132Record is a duplicate.
CLDB_E_RECORD_PKREQUIRED0x80131133Primary key value is required.
CLDB_E_RECORD_DELETED0x80131134Record is valid but deleted.
CLDB_E_RECORD_OUTOFORDER0x80131135Record is emitted out of order.
CLDB_E_COLUMN_OVERFLOW0x80131140Data too large.
CLDB_E_COLUMN_READONLY0x80131141Column cannot be changed.
CLDB_E_COLUMN_SPECIALCOL0x80131142Too many RID or primary key columns, 1 is max.
CLDB_E_COLUMN_PKNONULLS0x80131143Primary key column may not allow the null value.
CLDB_E_TABLE_CANTDROP0x80131150Attempted auto-drop of table while open.
CLDB_E_OBJECT_NOTFOUND0x80131151Object not found in the database.
CLDB_E_OBJECT_COLNOTFOUND0x80131152Column not found.
CLDB_E_VECTOR_BADINDEX0x80131153Invalid index.
CLDB_E_TOO_BIG0x80131154A blob or string was too big.
META_E_INVALID_TOKEN_TYPE0x8013115fTypeLib export: Detected array of SafeHandles.
TLBX_E_INVALID_TYPEINFO0x80131160Typelib import: Invalid type, not converted.
TLBX_E_INVALID_TYPEINFO_UNNAMED0x80131161Typelib import: Invalid type, not converted - name unknown.
TLBX_E_CTX_NESTED0x80131162Typelib export: TLBX_E_CTX_NESTED
TLBX_E_ERROR_MESSAGE0x80131163Typelib export: General error. See IError info for more information.
TLBX_E_CANT_SAVE0x80131164Typelib export: SaveAllChanges() failed.
TLBX_W_LIBNOTREGISTERED0x80131165Typelib export: Type library is not registered.
TLBX_E_CANTLOADLIBRARY0x80131166Typelib export: Type library could not be loaded.
TLBX_E_BAD_VT_TYPE0x80131167Typelib import: Invalid vartype, not converted.
TLBX_E_NO_MSCOREE_TLB0x80131168Typelib export: Could not load mscoree.tlb.
TLBX_E_BAD_MSCOREE_TLB0x80131169Typelib export: Could not get a required typeinfo from mscoree.tlb.
TLBX_E_TLB_EXCEPTION0x8013116aMerge: Method is duplicated but no matching property info.
TLBX_E_MULTIPLE_LCIDS0x8013116bBad binary signature.
TLBX_E_AMBIGUOUS_RETURN0x8013116dMerge: duplicated methods have inconsistent ImplFlags.
TLBX_E_DUPLICATE_TYPE_NAME0x8013116eMerge: Inconsistency in meta data.
TLBX_I_NONSEQUENTIALSTRUCT0x80131172Typelib export: Cannot convert non-sequential structs.
TLBX_I_RESOLVEREFFAILED0x80131174Typelib import: The resolve ref call failed.
TLBX_E_ASANY0x80131175Typelib export: Encountered AsAny - ignored.
TLBX_E_INVALIDLCIDPARAM0x80131176Typelib export: Encountered an [lcid] attribute set to an invalid parameter.
TLBX_E_LCIDONDISPONLYITF0x80131177Typelib export: Encountered an [lcid] attribute on a pure dispatch interface.
TLBX_E_NONPUBLIC_FIELD0x80131178Typelib export: Non-public field in public struct.
TLBX_E_BAD_NAMES0x8013117bTypeLib export: the hModule of a loaded class is 0; cannot export it.
TLBX_E_GENERICINST_SIGNATURE0x8013117dTypeLib export: attempted to export an Assembly imported from a TLB.
TLBX_E_GENERICPAR_SIGNATURE0x8013117eTypeLib import: attempted to import a TLB exported from an Assembly.
META_E_DUPLICATE0x80131180Attempted to define an object that already exists.
META_E_GUID_REQUIRED0x80131181A guid was not provided where one was required.
META_E_TYPEDEF_MISMATCH0x80131182Merge: an import typedef matched ns.name, but not version and guid.
META_E_MERGE_COLLISION0x80131183Merge: conflict between import and emit.
TLBX_E_NO_SAFEHANDLE_ARRAYS0x80131186TypeLib export: Detected array of SafeHandles.
META_E_METHD_NOT_FOUND0x80131187Merge: Class already in emit scope, but member not found.
META_E_FIELD_NOT_FOUND0x80131188Merge: Class already in emit scope, but member not found.
META_E_PARAM_MISMATCH0x80131189Merge: Parameter information mismatched.
META_E_BADMETADATA0x8013118aTypelib export: Types which contain the native type NATIVE_TYPE_LPTSTR are not allowed to be exported to COM.
META_E_INTFCEIMPL_NOT_FOUND0x8013118bTypelib export: Types with a charset of auto are not allowed to be exported to COM.
TLBX_E_NO_CRITICALHANDLE_ARRAYS0x8013118cN/A
META_E_CLASS_LAYOUT_INCONSISTENT0x8013118dN/A
META_E_FIELD_MARSHAL_NOT_FOUND0x8013118eTypelib export: The enum value is not legal for a typelib.
META_E_METHODSEM_NOT_FOUND0x8013118fTypelib export: Duplicate IID.
META_E_EVENT_NOT_FOUND0x80131190Merge: Method is duplicated but no matching event info.
META_E_PROP_NOT_FOUND0x80131191Merge: Method is duplicated but no matching property info.
META_E_BAD_SIGNATURE0x80131192Bad binary signature.
META_E_BAD_INPUT_PARAMETER0x80131193Bad input parameters.
META_E_METHDIMPL_INCONSISTENT0x80131194Merge: duplicated methods have inconsistent ImplFlags.
META_E_MD_INCONSISTENCY0x80131195Merge: Inconsistency in meta data.
META_E_CANNOTRESOLVETYPEREF0x80131196Cannot resolve typeref.
META_E_STRINGSPACE_FULL0x80131198No logical space left to create more user strings.
META_E_UNEXPECTED_REMAP0x80131199Unexpected TokenRemap.
META_E_HAS_UNMARKALL0x8013119aKnown custom attribute had invalid value.
META_E_MUST_CALL_UNMARKALL0x8013119bKnown custom attribute blob has bad format.
META_E_GENERICPARAM_INCONSISTENT0x8013119cKnown custom attribute blob has repeated named argument.
META_E_EVENT_COUNTS0x8013119dKnown custom attribute named argument not recognized.
META_E_PROPERTY_COUNTS0x8013119eKnown attribute named argument does not support variant.
META_E_TYPEDEF_MISSING0x8013119fKnown attribute named argument does not support array.
TLBX_E_CANT_LOAD_MODULE0x801311a0Failure decoding permission set.
TLBX_E_CANT_LOAD_CLASS0x801311a1Failure encoding permission set.
TLBX_E_NULL_MODULE0x801311a2Unrecognized encoding format.
TLBX_E_NO_CLSID_KEY0x801311a3StrongName APIs not supported on system.
TLBX_E_CIRCULAR_EXPORT0x801311a4StrongName APIs could not locate a matching CSP.
TLBX_E_CIRCULAR_IMPORT0x801311a5Invalid security custom attribute.
TLBX_E_BAD_NATIVETYPE0x801311a6PolicyException thrown.
TLBX_E_BAD_VTABLE0x801311a7Failed to grant minimum permission requests.
TLBX_E_CRM_NON_STATIC0x801311a8Failed to grant permission to execute.
TLBX_E_CRM_INVALID_SIG0x801311a9XML Syntax error.
TLBX_E_CLASS_LOAD_EXCEPTION0x801311aaBad custom attribute serialized blob version.
TLBX_E_UNKNOWN_SIGNATURE0x801311abInvalid security action code.
TLBX_E_REFERENCED_TYPELIB0x801311acCA reference to CA definition in same assembly.
TLBX_E_INVALID_NAMESPACE0x801311adUse of non-CAS permission with invalid action.
TLBX_E_LAYOUT_ERROR0x801311aeFailed to load assembly containing CA (or required CA type).
TLBX_E_NOTIUNKNOWN0x801311afFailed to load assembly containing CA (or required CA type).
TLBX_E_NONVISIBLEVALUECLASS0x801311b0Signature size mismatch.
TLBX_E_LPTSTR_NOT_ALLOWED0x801311b1Public key of assembly did not match signing public key.
TLBX_E_AUTO_CS_NOT_ALLOWED0x801311b2N/A
TLBX_E_ENUM_VALUE_INVALID0x801311b5N/A
TLBX_E_DUPLICATE_IID0x801311b6N/A
TLBX_E_NO_NESTED_ARRAYS0x801311b7N/A
TLBX_E_PARAM_ERROR_NAMED0x801311b8N/A
TLBX_E_PARAM_ERROR_UNNAMED0x801311b9N/A
TLBX_E_AGNOST_SIGNATURE0x801311baN/A
TLBX_E_CONVERT_FAIL0x801311bbN/A
TLBX_W_DUAL_NOT_DISPATCH0x801311bcN/A
TLBX_E_BAD_SIGNATURE0x801311bdN/A
TLBX_E_ARRAY_NEEDS_NT_FIXED0x801311beN/A
TLBX_E_CLASS_NEEDS_NT_INTF0x801311bfN/A
META_E_CA_INVALID_TARGET0x801311c0Failure during Cryptographic operation.
META_E_CA_INVALID_VALUE0x801311c1Unexpected Cryptographic operation.
META_E_CA_INVALID_BLOB0x801311c2N/A
META_E_CA_REPEATED_ARG0x801311c3N/A
META_E_CA_UNKNOWN_ARGUMENT0x801311c4N/A
META_E_CA_VARIANT_NYI0x801311c5N/A
META_E_CA_ARRAY_NYI0x801311c6N/A
META_E_CA_UNEXPECTED_TYPE0x801311c7N/A
META_E_CA_INVALID_ARGTYPE0x801311c8N/A
META_E_CA_INVALID_ARG_FOR_TYPE0x801311c9N/A
META_E_CA_INVALID_UUID0x801311caUnable to create store file mapping.
META_E_CA_INVALID_MARSHALAS_FIELDS0x801311cbUnable to map the store file.
META_E_CA_NT_FIELDONLY0x801311ccUnable to determine store file size.
META_E_CA_NEGATIVE_PARAMINDEX0x801311cdUnable to create mutex.
META_E_CA_NEGATIVE_MULTIPLIER0x801311ceUnable to lock the store.
META_E_CA_NEGATIVE_CONSTSIZE0x801311cfFile Write failed.
META_E_CA_FIXEDSTR_SIZE_REQUIRED0x801311d0Bad custom attribute serialized blob.
META_E_CA_CUSTMARSH_TYPE_REQUIRED0x801311d1Bad custom attribute serialized blob version.
META_E_CA_FILENAME_REQUIRED0x801311d2Invalid security action code.
TLBX_W_NO_PROPS_IN_EVENTS0x801311d3CA reference to CA definition in same assembly.
META_E_NOT_IN_ENC_MODE0x801311d4Use of non-CAS permission with invalid action.
META_E_METHOD_COUNTS0x801311d6Failed to load assembly containing CA (or required CA type).
META_E_FIELD_COUNTS0x801311d7Failed to load CA type (or required CA type).
META_E_PARAM_COUNTS0x801311d8Failed to load CA type (or required CA type).
TLBX_E_TYPED_REF0x801311daN/A
TLBX_E_BITNESS_MISMATCH0x801311e1N/A
TLBX_E_EVENT_WITH_NEWENUM0x801311e2N/A
TLBX_E_PROPGET_WITHOUT_RETURN0x801311e3N/A
META_E_MISMATCHED_VISIBLITY0x801311e4N/A
META_E_CA_BAD_FRIENDS_ARGS0x801311e5N/A
META_E_CA_FRIENDS_SN_REQUIRED0x801311e6N/A
VLDTR_E_RID_OUTOFRANGE0x80131203Rid is out of range.
VLDTR_E_CDTKN_OUTOFRANGE0x80131204Coded token type is out of range.
VLDTR_E_CDRID_OUTOFRANGE0x80131205Coded rid is out of range.
VLDTR_E_STRING_INVALID0x80131206String offset is invalid.
VLDTR_E_GUID_INVALID0x80131207GUID offset is invalid.
VLDTR_E_BLOB_INVALID0x80131208Blob offset if invalid.
VLDTR_E_MOD_MULTI0x80131209Multiple module records found.
VLDTR_E_MOD_NULLMVID0x8013120aFieldLayout2 has a duplicate.
VLDTR_E_TR_NAMENULL0x8013120bModuleRef name is NULL.
VLDTR_E_TR_DUP0x8013120cModuleRef has a duplicate.
VLDTR_E_TD_NAMENULL0x8013120dTypeRef has a bad resolution scope.
VLDTR_E_TD_DUPNAME0x8013120eTypeDef marked nested has no encloser.
VLDTR_E_TD_DUPGUID0x8013120fTypeDef extends a TypeRef which resolves to a TypeDef in the same module.
VLDTR_E_TD_NOTIFACEOBJEXTNULL0x80131210TypeDef that is not an Interface and not System.Object extends nil parent.
VLDTR_E_TD_OBJEXTENDSNONNULL0x80131211System.Object extends a non-nil parent.
VLDTR_E_TD_EXTENDSSEALED0x80131212TypeDef extends sealed class.
VLDTR_E_TD_DLTNORTSPCL0x80131213TypeDef is Deleted but not marked with RTSpecialName.
VLDTR_E_TD_RTSPCLNOTDLT0x80131214TypeDef is marked RTSpecialName, but is not a Deleted record.
VLDTR_E_MI_DECLPRIV0x80131215MethodImpl's Decl is private.
VLDTR_E_AS_BADNAME0x80131216Assembly [Ref] name has path and/or extension.
VLDTR_E_FILE_SYSNAME0x80131217File has a system name (con, com, aux, etc.).
VLDTR_E_MI_BODYSTATIC0x80131218MethodImpl's body is static.
VLDTR_E_TD_IFACENOTABS0x80131219TypeDef is marked Interface but not Abstract.
VLDTR_E_TD_IFACEPARNOTNIL0x8013121aSignature has function pointer missing argument count.
VLDTR_E_TD_IFACEGUIDNULL0x8013121bSignature is missing rank specification.
VLDTR_E_MI_DECLFINAL0x8013121cSignature is missing count of sized dimensions.
VLDTR_E_TD_VTNOTSEAL0x8013121dSignature is missing size of dimension.
VLDTR_E_PD_BADFLAGS0x8013121eSignature is missing count of lower bounds.
VLDTR_E_IFACE_DUP0x8013121fSignature is missing a lower bound.
VLDTR_E_MR_NAMENULL0x80131220MemberRef name is NULL.
VLDTR_E_MR_VTBLNAME0x80131221MemberRef has an invalid name, _VtblGap*.
VLDTR_E_MR_DELNAME0x80131222MemberRef has an invalid name, _Deleted*.
VLDTR_E_MR_PARNIL0x80131223MemberRef parent Nil in a PE file.
VLDTR_E_MR_BADCALLINGCONV0x80131224MemberRef has invalid calling convention.
VLDTR_E_MR_NOTVARARG0x80131225MemberRef has Method parent but calling convention is not VARARG.
VLDTR_E_MR_NAMEDIFF0x80131226MemberRef name different from parent MethodDef.
VLDTR_E_MR_SIGDIFF0x80131227MemberRef signature different from parent MethodDef.
VLDTR_E_MR_DUP0x80131228MemberRef has a duplicate.
VLDTR_E_CL_TDAUTO0x80131229ClassLayout parent TypeDef is marked AutoLayout.
VLDTR_E_CL_BADPCKSZ0x8013122aAssembly name is NULL.
VLDTR_E_CL_DUP0x8013122bE_T_VALUETYPE<class token> or E_T_CLASS<vtype token>.
VLDTR_E_FL_BADOFFSET0x8013122cClass layout on an Interface.
VLDTR_E_FL_TDNIL0x8013122dAssemblyOS platform ID invalid.
VLDTR_E_FL_NOCL0x8013122eAssemblyRef name is NULL.
VLDTR_E_FL_TDNOTEXPLCT0x8013122fTypeDef not nested has encloser.
VLDTR_E_FL_FLDSTATIC0x80131230FieldLayout2 has field marked Static.
VLDTR_E_FL_DUP0x80131231FieldLayout2 has a duplicate.
VLDTR_E_MODREF_NAMENULL0x80131232ModuleRef name is NULL.
VLDTR_E_MODREF_DUP0x80131233ModuleRef has a duplicate.
VLDTR_E_TR_BADSCOPE0x80131234TypeRef has a bad resolution scope.
VLDTR_E_TD_NESTEDNOENCL0x80131235TypeDef marked nested has no encloser.
VLDTR_E_TD_EXTTRRES0x80131236TypeDef extends a TypeRef which resolves to a TypeDef in the same module.
VLDTR_E_SIGNULL0x80131237Signature specified is zero-sized.
VLDTR_E_SIGNODATA0x80131238Signature does not have enough data at specified byte.
VLDTR_E_MD_BADCALLINGCONV0x80131239Method signature has invalid calling convention.
VLDTR_E_MD_THISSTATIC0x8013123aEnum has no value__ field.
VLDTR_E_MD_NOTTHISNOTSTATIC0x8013123bEnum's value__ field is static.
VLDTR_E_MD_NOARGCNT0x8013123cEnum's value__ field is not SpecialName.
VLDTR_E_SIG_MISSELTYPE0x8013123dEnum's field is not static.
VLDTR_E_SIG_MISSTKN0x8013123eEnum's field is not literal.
VLDTR_E_SIG_TKNBAD0x8013123fEnum has no literal fields.
VLDTR_E_SIG_MISSFPTR0x80131240Signature is missing function pointer.
VLDTR_E_SIG_MISSFPTRARGCNT0x80131241Signature has function pointer missing argument count.
VLDTR_E_SIG_MISSRANK0x80131242Signature is missing rank specification.
VLDTR_E_SIG_MISSNSIZE0x80131243Signature is missing count of sized dimensions.
VLDTR_E_SIG_MISSSIZE0x80131244Signature is missing size of dimension.
VLDTR_E_SIG_MISSNLBND0x80131245Signature is missing count of lower bounds.
VLDTR_E_SIG_MISSLBND0x80131246Signature is missing a lower bound.
VLDTR_E_SIG_BADELTYPE0x80131247Signature has bad element type.
VLDTR_E_SIG_MISSVASIZE0x80131248Signature has value array missing size.
VLDTR_E_FD_BADCALLINGCONV0x80131249Field signature has invalid calling convention.
VLDTR_E_MD_NAMENULL0x8013124aField is marked marshaled but has no marshaling record.
VLDTR_E_MD_PARNIL0x8013124bField has marshaling record but is not marked marshaled.
VLDTR_E_MD_DUP0x8013124cField is marked HasDefault but has no const value.
VLDTR_E_FD_NAMENULL0x8013124dField has const value record but is not marked HasDefault.
VLDTR_E_FD_PARNIL0x8013124eField or method is marked HasSecurity but has no security record.
VLDTR_E_FD_DUP0x8013124fField or method has security record but is not marked HasSecurity.
VLDTR_E_AS_MULTI0x80131250Multiple Assembly records found.
VLDTR_E_AS_NAMENULL0x80131251Assembly name is NULL.
VLDTR_E_SIG_TOKTYPEMISMATCH0x80131252E_T_VALUETYPE<class token> or E_T_CLASS<vtype token>.
VLDTR_E_CL_TDINTF0x80131253Class layout on an Interface.
VLDTR_E_ASOS_OSPLTFRMIDINVAL0x80131254AssemblyOS platform ID invalid.
VLDTR_E_AR_NAMENULL0x80131255AssemblyRef name is NULL.
VLDTR_E_TD_ENCLNOTNESTED0x80131256TypeDef not nested has encloser.
VLDTR_E_AROS_OSPLTFRMIDINVAL0x80131257AssemblyRefOS has invalid platform ID.
VLDTR_E_FILE_NAMENULL0x80131258File name is NULL.
VLDTR_E_CT_NAMENULL0x80131259ExportedType name is NULL.
VLDTR_E_TD_EXTENDSCHILD0x8013125aField is Literal but not Static.
VLDTR_E_MAR_NAMENULL0x8013125bField or method is RTSpec.Name but not Spec.Name.
VLDTR_E_FILE_DUP0x8013125cMethod is abstract, parent is not.
VLDTR_E_FILE_NAMEFULLQLFD0x8013125dMethod not static or abstract in interface.
VLDTR_E_CT_DUP0x8013125eMethod not public in interface.
VLDTR_E_MAR_DUP0x8013125f.ctor in interface.
VLDTR_E_MAR_NOTPUBPRIV0x80131260ManifestResource is neither Public nor Private.
VLDTR_E_TD_ENUMNOVALUE0x80131261Enum has no value__ field.
VLDTR_E_TD_ENUMVALSTATIC0x80131262Enum's value__ field is static.
VLDTR_E_TD_ENUMVALNOTSN0x80131263Enum's value__ field is not SpecialName.
VLDTR_E_TD_ENUMFLDNOTST0x80131264Enum's field is not static.
VLDTR_E_TD_ENUMFLDNOTLIT0x80131265Enum's field is not literal.
VLDTR_E_TD_ENUMNOLITFLDS0x80131266Enum has no literal fields.
VLDTR_E_TD_ENUMFLDSIGMISMATCH0x80131267Enum's field signature does not match value__ signature.
VLDTR_E_TD_ENUMVALNOT1ST0x80131268Enum's value__ field is not first.
VLDTR_E_FD_NOTVALUERTSN0x80131269Field is RTSpecialName but name is not value__.
VLDTR_E_FD_VALUEPARNOTENUM0x8013126aMethod is abstract and implemented.
VLDTR_E_FD_INSTINIFACE0x8013126bMethod is abstract and pinvoke.
VLDTR_E_FD_NOTPUBINIFACE0x8013126cMethod is abstract and not virtual.
VLDTR_E_FMD_GLOBALNOTPUBPRIVSC0x8013126dMethod is not abstract and not implemented.
VLDTR_E_FMD_GLOBALNOTSTATIC0x8013126eMethod is not abstract and not (non-zero RVA or PInvoke or runtime).
VLDTR_E_FD_GLOBALNORVA0x8013126fMethod is PrivateScope and has RVA set to zero.
VLDTR_E_MD_CTORZERORVA0x80131270.ctor or .cctor has zero RVA.
VLDTR_E_FD_MARKEDNOMARSHAL0x80131271Field is marked marshaled but has no marshaling record.
VLDTR_E_FD_MARSHALNOTMARKED0x80131272Field has marshaling record but is not marked marshaled.
VLDTR_E_FD_MARKEDNODEFLT0x80131273Field is marked HasDefault but has no const value.
VLDTR_E_FD_DEFLTNOTMARKED0x80131274Field has const value record but is not marked HasDefault.
VLDTR_E_FMD_MARKEDNOSECUR0x80131275Field or method is marked HasSecurity but has no security record.
VLDTR_E_FMD_SECURNOTMARKED0x80131276Field or method has security record but is not marked HasSecurity.
VLDTR_E_FMD_PINVOKENOTSTATIC0x80131277Field or method is PInvoke but is not marked Static.
VLDTR_E_FMD_MARKEDNOPINVOKE0x80131278Field or method is marked PInvoke but has no ImplMap.
VLDTR_E_FMD_PINVOKENOTMARKED0x80131279Field or method has ImplMap but is not marked PInvoke.
VLDTR_E_FMD_BADIMPLMAP0x8013127aUnrecognized Hash Alg ID (warning).
VLDTR_E_IMAP_BADMODREF0x8013127bUnrecognized Processor ID in Assembly(warning).
VLDTR_E_IMAP_BADMEMBER0x8013127cUnrecognized Processor ID in AssemblyRef(warning).
VLDTR_E_IMAP_BADIMPORTNAME0x8013127dConstant: parent token out of range.
VLDTR_E_IMAP_BADCALLCONV0x8013127eInvalid flags in Assembly.
VLDTR_E_FMD_BADACCESSFLAG0x8013127fThere is TypeDef with same name as TypeRef (warning).
VLDTR_E_FD_INITONLYANDLITERAL0x80131280Field is InitOnly and Literal.
VLDTR_E_FD_LITERALNOTSTATIC0x80131281Field is Literal but not Static.
VLDTR_E_FMD_RTSNNOTSN0x80131282Field or method is RTSpec.Name but not Spec.Name.
VLDTR_E_MD_ABSTPARNOTABST0x80131283Method is abstract, parent is not.
VLDTR_E_MD_NOTSTATABSTININTF0x80131284Method not static or abstract in interface.
VLDTR_E_MD_NOTPUBININTF0x80131285Method not public in interface.
VLDTR_E_MD_CTORININTF0x80131286.ctor in interface.
VLDTR_E_MD_GLOBALCTORCCTOR0x80131287global .ctor or .cctor.
VLDTR_E_MD_CTORSTATIC0x80131288static .ctor.
VLDTR_E_MD_CTORNOTSNRTSN0x80131289.ctor or .cctor not marked SpecialName or RTSpecialName.
VLDTR_E_MD_CTORVIRT0x8013128aMethodImpl has invalid MethodDeclaration token.
VLDTR_E_MD_CTORABST0x8013128bMethodImpl has invalid MethodBody token.
VLDTR_E_MD_CCTORNOTSTATIC0x8013128cMethodImpl has duplicate.
VLDTR_E_MD_ZERORVA0x8013128dBad field parent.
VLDTR_E_MD_FINNOTVIRT0x8013128eParameter out of sequence (warning).
VLDTR_E_MD_STATANDFINORVIRT0x8013128fParameter's sequence number exceeds number of arguments.
VLDTR_E_MD_ABSTANDFINAL0x80131290Method is abstract and final.
VLDTR_E_MD_ABSTANDIMPL0x80131291Method is abstract and implemented.
VLDTR_E_MD_ABSTANDPINVOKE0x80131292Method is abstract and pinvoke.
VLDTR_E_MD_ABSTNOTVIRT0x80131293Method is abstract and not virtual.
VLDTR_E_MD_NOTABSTNOTIMPL0x80131294Method is not abstract and not implemented.
VLDTR_E_MD_NOTABSTBADFLAGSRVA0x80131295Method is not abstract and not (non-zero RVA or PInvoke or runtime).
VLDTR_E_MD_PRIVSCOPENORVA0x80131296Method is PrivateScope and has RVA set to zero.
VLDTR_E_MD_GLOBALABSTORVIRT0x80131297Global method is abstract or virtual.
VLDTR_E_SIG_LONGFORM0x80131298Signature uses long form.
VLDTR_E_MD_MULTIPLESEMANTICS0x80131299Method has multiple semantics (warning).
VLDTR_E_MD_INVALIDSEMANTICS0x8013129aProperty marked HasDefault, has no const value.
VLDTR_E_MD_SEMANTICSNOTEXIST0x8013129bProperty has const value, not marked HasDefault.
VLDTR_E_MI_DECLNOTVIRT0x8013129cProperty has method that is neither a Setter nor a Getter.
VLDTR_E_FMD_GLOBALITEM0x8013129dProperty has method with invalid token.
VLDTR_E_MD_MULTSEMANTICFLAGS0x8013129eProperty has method from another class.
VLDTR_E_MD_NOSEMANTICFLAGS0x8013129fConst has non-null blob when it should not.
VLDTR_E_FD_FLDINIFACE0x801312a0Access to this method is denied.
VLDTR_E_AS_HASHALGID0x801312a1Field does not exist.
VLDTR_E_AS_PROCID0x801312a2Member does not exist.
VLDTR_E_AR_PROCID0x801312a3Method does not exist.
VLDTR_E_CN_PARENTRANGE0x801312a4Attempt to combine delegates that are not multicast.
VLDTR_E_AS_BADFLAGS0x801312a5Operation is not supported.
VLDTR_E_TR_HASTYPEDEF0x801312a6Arithmetic, casting or conversion operation overflowed or underflowed.
VLDTR_E_IFACE_BADIMPL0x801312a7An array has the wrong number of dimensions for a particular operation.
VLDTR_E_IFACE_BADIFACE0x801312a8This operation must be called from a synchronized block.
VLDTR_E_TD_SECURNOTMARKED0x801312a9Thread was interrupted from a waiting state.
VLDTR_E_TD_MARKEDNOSECUR0x801312aaA datatype misalignment was detected in a load or store instruction.
VLDTR_E_MD_CCTORHASARGS0x801312abA managed code contract (ie, precondition, postcondition, invariant, or assert) failed.
VLDTR_E_CT_BADIMPL0x801312acAccess to this type is denied.
VLDTR_E_MI_ALIENBODY0x801312adN/A
VLDTR_E_MD_CCTORCALLCONV0x801312aeN/A
VLDTR_E_MI_BADCLASS0x801312afN/A
VLDTR_E_MI_CLASSISINTF0x801312b0Thread is in an invalid state for this operation.
VLDTR_E_MI_BADDECL0x801312b1Thread is stopping.
VLDTR_E_MI_BADBODY0x801312b2Could not find or load a type.
VLDTR_E_MI_DUP0x801312b3Could not find the specified DllImport entrypoint.
VLDTR_E_FD_BADPARENT0x801312b4Could not find the specified DllImport Dll.
VLDTR_E_MD_PARAMOUTOFSEQ0x801312b5N/A
VLDTR_E_MD_PARASEQTOOBIG0x801312b6N/A
VLDTR_E_MD_PARMMARKEDNOMARSHAL0x801312b7An invalid __ComObject has been used.
VLDTR_E_MD_PARMMARSHALNOTMARKED0x801312b8Not a Number.
VLDTR_E_MD_PARMMARKEDNODEFLT0x801312baN/A
VLDTR_E_MD_PARMDEFLTNOTMARKED0x801312bbN/A
VLDTR_E_PR_BADSCOPE0x801312bcN/A
VLDTR_E_PR_NONAME0x801312bdN/A
VLDTR_E_PR_NOSIG0x801312beN/A
VLDTR_E_PR_DUP0x801312bfN/A
VLDTR_E_PR_BADCALLINGCONV0x801312c0Thread has aborted.
VLDTR_E_PR_MARKEDNODEFLT0x801312c1OLE Variant has an invalid type.
VLDTR_E_PR_DEFLTNOTMARKED0x801312c2An expected resource in the assembly manifest was missing.
VLDTR_E_PR_BADSEMANTICS0x801312c3A mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata.
VLDTR_E_PR_BADMETHOD0x801312c4Uncaught exception during type initialization.
VLDTR_E_PR_ALIENMETHOD0x801312c5Invalid marshaling directives.
VLDTR_E_CN_BLOBNOTNULL0x801312c6An expected satellite assembly containing the ultimate fallback resources for a given culture was not found or could not be loaded.
VLDTR_E_CN_BLOBNULL0x801312c7The format of one argument does not meet the contract of the method.
VLDTR_E_EV_BADSCOPE0x801312c8A mismatch has occurred between the runtime rank of the array and the rank recorded in the metadata.
VLDTR_E_EV_NONAME0x801312caN/A
VLDTR_E_EV_DUP0x801312cbN/A
VLDTR_E_EV_BADEVTYPE0x801312ccN/A
VLDTR_E_EV_EVTYPENOTCLASS0x801312cdN/A
VLDTR_E_EV_BADSEMANTICS0x801312ceN/A
VLDTR_E_EV_BADMETHOD0x801312cfN/A
VLDTR_E_EV_ALIENMETHOD0x801312d0Devices not supported.
VLDTR_E_EV_NOADDON0x801312d1A datatype misalignment was detected in a load or store instruction.
VLDTR_E_EV_NOREMOVEON0x801312d2A managed code contract (ie, precondition, postcondition, invariant, or assert) failed.
VLDTR_E_CT_DUPTDNAME0x801312d3Access to this type is denied.
VLDTR_E_MAR_BADOFFSET0x801312d4N/A
VLDTR_E_DS_BADOWNER0x801312d5N/A
VLDTR_E_DS_BADFLAGS0x801312d6N/A
VLDTR_E_DS_NOBLOB0x801312d7N/A
VLDTR_E_MAR_BADIMPL0x801312d8N/A
VLDTR_E_MR_VARARGCALLINGCONV0x801312daN/A
VLDTR_E_MD_CTORNOTVOID0x801312dbN/A
VLDTR_E_EV_FIRENOTVOID0x801312dcN/A
VLDTR_E_AS_BADLOCALE0x801312ddN/A
VLDTR_E_CN_PARENTTYPE0x801312deN/A
VLDTR_E_SIG_SENTINMETHODDEF0x801312dfN/A
VLDTR_E_SIG_SENTMUSTVARARG0x801312e0N/A
VLDTR_E_SIG_MULTSENTINELS0x801312e1N/A
VLDTR_E_SIG_LASTSENTINEL0x801312e2N/A
VLDTR_E_SIG_MISSARG0x801312e3N/A
VLDTR_E_SIG_BYREFINFIELD0x801312e4N/A
VLDTR_E_MD_SYNCMETHODINVTYPE0x801312e5N/A
VLDTR_E_TD_NAMETOOLONG0x801312e6N/A
VLDTR_E_AS_PROCDUP0x801312e7N/A
VLDTR_E_ASOS_DUP0x801312e8N/A
VLDTR_E_MAR_BADFLAGS0x801312e9N/A
VLDTR_E_CT_NOTYPEDEFID0x801312eaN/A
VLDTR_E_FILE_BADFLAGS0x801312ebN/A
VLDTR_E_FILE_NULLHASH0x801312ecN/A
VLDTR_E_MOD_NONAME0x801312edN/A
VLDTR_E_MOD_NAMEFULLQLFD0x801312eeN/A
VLDTR_E_TD_RTSPCLNOTSPCL0x801312efN/A
VLDTR_E_TD_EXTENDSIFACE0x801312f0N/A
VLDTR_E_MD_CTORPINVOKE0x801312f1N/A
VLDTR_E_TD_SYSENUMNOTCLASS0x801312f2N/A
VLDTR_E_TD_SYSENUMNOTEXTVTYPE0x801312f3N/A
VLDTR_E_MI_SIGMISMATCH0x801312f4N/A
VLDTR_E_TD_ENUMHASMETHODS0x801312f5N/A
VLDTR_E_TD_ENUMIMPLIFACE0x801312f6N/A
VLDTR_E_TD_ENUMHASPROP0x801312f7N/A
VLDTR_E_TD_ENUMHASEVENT0x801312f8N/A
VLDTR_E_TD_BADMETHODLST0x801312f9N/A
VLDTR_E_TD_BADFIELDLST0x801312faN/A
VLDTR_E_CN_BADTYPE0x801312fbN/A
VLDTR_E_TD_ENUMNOINSTFLD0x801312fcN/A
VLDTR_E_TD_ENUMMULINSTFLD0x801312fdN/A
VLDTR_E_INTERRUPTED0x801312feN/A
VLDTR_E_NOTINIT0x801312ffN/A
CORDBG_E_UNRECOVERABLE_ERROR0x80131300Unrecoverable API error.
CORDBG_E_PROCESS_TERMINATED0x80131301Process was terminated.
CORDBG_E_PROCESS_NOT_SYNCHRONIZED0x80131302Process not synchronized.
CORDBG_E_CLASS_NOT_LOADED0x80131303A class is not loaded.
CORDBG_E_IL_VAR_NOT_AVAILABLE0x80131304An IL variable is not available at the current native IP.
CORDBG_E_BAD_REFERENCE_VALUE0x80131305A reference value was found to be bad during dereferencing.
CORDBG_E_FIELD_NOT_AVAILABLE0x80131306A field in a class is not available, because the runtime optimized it away.
CORDBG_E_NON_NATIVE_FRAME0x80131307'Native-frame-only' operation on non-native frame.
CORDBG_E_NONCONTINUABLE_EXCEPTION0x80131308Cannot Continue on non-continuable exception.
CORDBG_E_CODE_NOT_AVAILABLE0x80131309The code is currently unavailable.
CORDBG_E_FUNCTION_NOT_IL0x8013130aWhen doing Edit and Continue, some JITs do not allow increasing the maximum level to which exception handling can be nested.
CORDBG_E_CANT_SET_IP_INTO_FINALLY0x8013130eProcess has been detached.
CORDBG_E_CANT_SET_IP_OUT_OF_FINALLY0x8013130fNot allowed to change the signature of an existing method.
CORDBG_E_CANT_SET_IP_INTO_CATCH0x80131310SetIP is not possible, because SetIP would move EIP from outside of an exception handling catch clause to a point inside of one.
CORDBG_E_SET_IP_NOT_ALLOWED_ON_NONLEAF_FRAME0x80131311SetIP cannot be done on any frame except the leaf frame.
CORDBG_E_SET_IP_IMPOSSIBLE0x80131312SetIP is not allowed.
CORDBG_E_FUNC_EVAL_BAD_START_POINT0x80131313Func eval cannot work. Bad starting point.
CORDBG_E_INVALID_OBJECT0x80131314This object value is no longer valid.
CORDBG_E_FUNC_EVAL_NOT_COMPLETE0x80131315CordbEval::GetResult called before func eval has finished.
CORDBG_E_INPROC_NOT_IMPL0x80131318The in-process version of the debugging API does not support this function.
CORDBG_E_STATIC_VAR_NOT_AVAILABLE0x8013131aInternal Runtime Error while doing Edit-and-Continue.
CORDBG_E_OBJECT_IS_NOT_COPYABLE_VALUE_CLASS0x8013131bThe field was added via Edit and Continue after the class was loaded.
CORDBG_E_CANT_SETIP_INTO_OR_OUT_OF_FILTER0x8013131cModule not loaded.
CORDBG_E_CANT_CHANGE_JIT_SETTING_FOR_ZAP_MODULE0x8013131dNot allowed to change base class.
CORDBG_E_CANT_SET_IP_OUT_OF_FINALLY_ON_WIN640x8013131eCannot set a breakpoint here.
CORDBG_E_CANT_SET_IP_OUT_OF_CATCH_ON_WIN640x8013131fDebugging is not possible due to an incompatibility within the CLR implementation.
CORDBG_E_REMOTE_CONNECTION_CONN_RESET0x80131320The remote device closed the connection.
CORDBG_E_REMOTE_CONNECTION_KEEP_ALIVE0x80131321The connection was closed due to a keep-alive failure.
CORDBG_E_REMOTE_CONNECTION_FATAL_ERROR0x80131322Generic error that the device connection has been broken with no chance for recovery.
CORDBG_E_CANT_SET_TO_JMC0x80131323Cannot use JMC on this code (likely wrong JIT settings).
CORDBG_E_NO_CONTEXT_FOR_INTERNAL_FRAME0x80131325Internal frame markers have no associated context.
CORDBG_E_NOT_CHILD_FRAME0x80131326The current frame is not a child frame.
CORDBG_E_NON_MATCHING_CONTEXT0x80131327The provided CONTEXT does not match the specified thread.
CORDBG_E_PAST_END_OF_STACK0x80131328The stackwalker is now past the end of stack. No information is available.
CORDBG_E_FUNC_EVAL_CANNOT_UPDATE_REGISTER_IN_NONLEAF_FRAME0x80131329Func eval cannot update a variable stored in a register on a non-leaf frame. The most likely cause is that such a variable is passed as a ref/out argument.
CORDBG_E_BAD_THREAD_STATE0x8013132dThe Method has no associated IL.
CORDBG_E_DEBUGGER_ALREADY_ATTACHED0x8013132eThe thread has never run managed code before.
CORDBG_E_SUPERFLOUS_CONTINUE0x8013132fThe function may only be called during profiler initialization.
CORDBG_E_SET_VALUE_NOT_ALLOWED_ON_NONLEAF_FRAME0x80131330Cannot perfrom SetValue on non-leaf frames.
CORDBG_E_ENC_EH_MAX_NESTING_LEVEL_CANT_INCREASE0x80131331When doing Edit and Continue, some JITs do not allow increasing the maximum level to which exception handling can be nested.
CORDBG_E_ENC_MODULE_NOT_ENC_ENABLED0x80131332Tried to do Edit and Continue on a module that was not started in Edit and Continue mode.
CORDBG_E_SET_IP_NOT_ALLOWED_ON_EXCEPTION0x80131333SetIP cannot be done on any exception.
CORDBG_E_VARIABLE_IS_ACTUALLY_LITERAL0x80131334The 'variable' does not exist because it is a literal optimized away by the compiler.
CORDBG_E_PROCESS_DETACHED0x80131335Process has been detached.
CORDBG_E_ENC_METHOD_SIG_CHANGED0x80131336Not allowed to change the signature of an existing method.
CORDBG_E_ENC_METHOD_NO_LOCAL_SIG0x80131337Cannot get the local signature for the method.
CORDBG_E_ENC_CANT_ADD_FIELD_TO_VALUE_OR_LAYOUT_CLASS0x80131338Adding a field to a value or layout class is prohibited.
CORDBG_E_ENC_CANT_CHANGE_FIELD0x80131339Cannot change field after adding.
CORDBG_E_ENC_CANT_ADD_NON_PRIVATE_MEMBER0x8013133aN/A
CORDBG_E_FIELD_NOT_STATIC0x8013133bN/A
CORDBG_E_FIELD_NOT_INSTANCE0x8013133cN/A
CORDBG_E_ENC_ZAPPED_WITHOUT_ENC0x8013133dN/A
CORDBG_E_ENC_BAD_METHOD_INFO0x8013133eN/A
CORDBG_E_ENC_JIT_CANT_UPDATE0x8013133fN/A
CORDBG_E_ENC_MISSING_CLASS0x80131340An internal structure about the class is missing.
CORDBG_E_ENC_INTERNAL_ERROR0x80131341Internal Runtime Error while doing Edit-and-Continue.
CORDBG_E_ENC_HANGING_FIELD0x80131342The field was added via Edit and Continue after the class was loaded.
CORDBG_E_MODULE_NOT_LOADED0x80131343Module not loaded.
CORDBG_E_ENC_CANT_CHANGE_SUPERCLASS0x80131344Not allowed to change base class.
CORDBG_E_UNABLE_TO_SET_BREAKPOINT0x80131345Cannot set a breakpoint here.
CORDBG_E_DEBUGGING_NOT_POSSIBLE0x80131346Debugging is not possible due to an incompatibility within the CLR implementation.
CORDBG_E_KERNEL_DEBUGGER_ENABLED0x80131347A kernel debugger is enabled on the system. User-mode debugging will trap to the kernel debugger.
CORDBG_E_KERNEL_DEBUGGER_PRESENT0x80131348A kernel debugger is present on the system. User-mode debugging will trap to the kernel debugger.
CORDBG_E_HELPER_THREAD_DEAD0x80131349The debugger's internal helper thread is dead.
CORDBG_E_INTERFACE_INHERITANCE_CANT_CHANGE0x8013134aN/A
CORDBG_E_INCOMPATIBLE_PROTOCOL0x8013134bN/A
CORDBG_E_TOO_MANY_PROCESSES0x8013134cN/A
CORDBG_E_INTEROP_NOT_SUPPORTED0x8013134dN/A
CORDBG_E_NO_REMAP_BREAKPIONT0x8013134eN/A
CORDBG_E_OBJECT_NEUTERED0x8013134fN/A
CORPROF_E_FUNCTION_NOT_COMPILED0x80131350Function not yet compiled.
CORPROF_E_DATAINCOMPLETE0x80131351The ID is not fully loaded/defined yet.
CORPROF_E_NOT_REJITABLE_METHODS0x80131352The Module is not configured for updateable methods.
CORPROF_E_CANNOT_UPDATE_METHOD0x80131353The Method could not be updated for re-JIT.
CORPROF_E_FUNCTION_NOT_IL0x80131354The Method has no associated IL.
CORPROF_E_NOT_MANAGED_THREAD0x80131355The thread has never run managed code before.
CORPROF_E_CALL_ONLY_FROM_INIT0x80131356The function may only be called during profiler initialization.
CORPROF_E_INPROC_NOT_ENABLED0x80131357In-process debugging must be enabled during initialization.
CORPROF_E_JITMAPS_NOT_ENABLED0x80131358Cannot get a JIT map becuase they are not enabled.
CORPROF_E_INPROC_ALREADY_BEGUN0x80131359BeginInprocDebugging already called.
CORPROF_E_INPROC_NOT_AVAILABLE0x8013135aN/A
CORPROF_E_NOT_YET_AVAILABLE0x8013135bN/A
CORPROF_E_TYPE_IS_PARAMETERIZED0x8013135cN/A
CORPROF_E_FUNCTION_IS_PARAMETERIZED0x8013135dN/A
CORPROF_E_STACKSNAPSHOT_INVALID_TGT_THREAD0x8013135eN/A
CORPROF_E_STACKSNAPSHOT_UNMANAGED_CTX0x8013135fN/A
CORPROF_E_STACKSNAPSHOT_UNSAFE0x80131360N/A
CORPROF_E_STACKSNAPSHOT_ABORTED0x80131361N/A
CORPROF_E_LITERALS_HAVE_NO_ADDRESS0x80131362N/A
CORPROF_E_UNSUPPORTED_CALL_SEQUENCE0x80131363N/A
CORPROF_E_ASYNCHRONOUS_UNSAFE0x80131364N/A
CORPROF_E_CLASSID_IS_ARRAY0x80131365N/A
CORPROF_E_CLASSID_IS_COMPOSITE0x80131366N/A
CORPROF_E_PROFILER_DETACHING0x80131367N/A
CORPROF_E_PROFILER_NOT_ATTACHABLE0x80131368N/A
CORPROF_E_UNRECOGNIZED_PIPE_MSG_FORMAT0x80131369N/A
CORPROF_E_PROFILER_ALREADY_ACTIVE0x8013136aN/A
CORPROF_E_PROFILEE_INCOMPATIBLE_WITH_TRIGGER0x8013136bN/A
CORPROF_E_IPC_FAILED0x8013136cN/A
CORPROF_E_PROFILEE_PROCESS_NOT_FOUND0x8013136dN/A
CORPROF_E_CALLBACK3_REQUIRED0x8013136eN/A
CORPROF_E_UNSUPPORTED_FOR_ATTACHING_PROFILER0x8013136fN/A
CORPROF_E_IRREVERSIBLE_INSTRUMENTATION_PRESENT0x80131370N/A
CORPROF_E_RUNTIME_UNINITIALIZED0x80131371N/A
CORPROF_E_IMMUTABLE_FLAGS_SET0x80131372N/A
CORPROF_E_PROFILER_NOT_YET_INITIALIZED0x80131373N/A
CORPROF_E_INCONSISTENT_WITH_FLAGS0x80131374N/A
CORPROF_E_PROFILER_CANCEL_ACTIVATION0x80131375N/A
CORPROF_E_CONCURRENT_GC_NOT_PROFILABLE0x80131376N/A
CORPROF_E_INCONSISTENT_FLAGS_WITH_HOST_PROTECTION_SETTING0x80131377N/A
SECURITY_E_XML_TO_ASN_ENCODING0x80131400Failed to convert XML to ASN.
SECURITY_E_INCOMPATIBLE_SHARE0x80131401Loading this assembly would produce a different grant set from other instances.
SECURITY_E_UNVERIFIABLE0x80131402Unverifiable code failed policy check.
SECURITY_E_INCOMPATIBLE_EVIDENCE0x80131403Assembly already loaded without additional security evidence.
CORSEC_E_DECODE_SET0x80131410Failure decoding permission set.
CORSEC_E_ENCODE_SET0x80131411Failure encoding permission set.
CORSEC_E_UNSUPPORTED_FORMAT0x80131412Unrecognized encoding format.
SN_CRYPTOAPI_CALL_FAILED0x80131413StrongName APIs not supported on system.
CORSEC_E_CRYPTOAPI_CALL_FAILED0x80131413StrongName APIs not supported on system.
SN_NO_SUITABLE_CSP0x80131414StrongName APIs could not locate a matching CSP.
CORSEC_E_NO_SUITABLE_CSP0x80131414StrongName APIs could not locate a matching CSP.
CORSEC_E_INVALID_ATTR0x80131415Invalid security custom attribute.
CORSEC_E_POLICY_EXCEPTION0x80131416PolicyException thrown.
CORSEC_E_MIN_GRANT_FAIL0x80131417Failed to grant minimum permission requests.
CORSEC_E_NO_EXEC_PERM0x80131418Failed to grant permission to execute.
CORSEC_E_XMLSYNTAX0x80131419XML Syntax error.
CORSEC_E_INVALID_STRONGNAME0x8013141aBad custom attribute serialized blob version.
CORSEC_E_MISSING_STRONGNAME0x8013141bInvalid security action code.
CORSEC_E_CONTAINER_NOT_FOUND0x8013141cCA reference to CA definition in same assembly.
CORSEC_E_INVALID_IMAGE_FORMAT0x8013141dUse of non-CAS permission with invalid action.
CORSEC_E_INVALID_PUBLICKEY0x8013141eFailed to load assembly containing CA (or required CA type).
CORSEC_E_SIGNATURE_MISMATCH0x80131420Signature size mismatch.
SN_E_PUBLICKEY_MISMATCH0x80131421Public key of assembly did not match signing public key.
CORSEC_E_CRYPTO0x80131430Failure during Cryptographic operation.
CORSEC_E_CRYPTO_UNEX_OPER0x80131431Unexpected Cryptographic operation.
CORSECATTR_E_BAD_ATTRIBUTE0x8013143aUnable to create store file mapping.
CORSECATTR_E_MISSING_CONSTRUCTOR0x8013143bUnable to map the store file.
CORSECATTR_E_FAILED_TO_CREATE_PERM0x8013143cUnable to determine store file size.
CORSECATTR_E_BAD_ACTION_ASM0x8013143dUnable to create mutex.
CORSECATTR_E_BAD_ACTION_OTHER0x8013143eUnable to lock the store.
CORSECATTR_E_BAD_PARENT0x8013143fFile Write failed.
CORSECATTR_E_TRUNCATED0x80131440Bad custom attribute serialized blob.
CORSECATTR_E_BAD_VERSION0x80131441Bad custom attribute serialized blob version.
CORSECATTR_E_BAD_ACTION0x80131442Invalid security action code.
CORSECATTR_E_NO_SELF_REF0x80131443CA reference to CA definition in same assembly.
CORSECATTR_E_BAD_NONCAS0x80131444Use of non-CAS permission with invalid action.
CORSECATTR_E_ASSEMBLY_LOAD_FAILED0x80131445Failed to load assembly containing CA (or required CA type).
CORSECATTR_E_ASSEMBLY_LOAD_FAILED_EX0x80131446Failed to load assembly containing CA (or required CA type).
CORSECATTR_E_TYPE_LOAD_FAILED0x80131447Failed to load CA type (or required CA type).
CORSECATTR_E_TYPE_LOAD_FAILED_EX0x80131448Failed to load CA type (or required CA type).
CORSECATTR_E_ABSTRACT0x80131449CA type is abstract.
CORSECATTR_E_UNSUPPORTED_TYPE0x8013144aN/A
CORSECATTR_E_UNSUPPORTED_ENUM_TYPE0x8013144bN/A
CORSECATTR_E_NO_FIELD0x8013144cN/A
CORSECATTR_E_NO_PROPERTY0x8013144dN/A
CORSECATTR_E_EXCEPTION0x8013144eN/A
CORSECATTR_E_EXCEPTION_HR0x8013144fN/A
ISS_E_ISOSTORE_START0x80131450IsolatedStorage operation failed.
ISS_E_ISOSTORE0x80131450IsolatedStorage operation failed.
ISS_E_OPEN_STORE_FILE0x80131460Unable to open the store.
ISS_E_OPEN_FILE_MAPPING0x80131461Unable to create store file mapping.
ISS_E_MAP_VIEW_OF_FILE0x80131462Unable to map the store file.
ISS_E_GET_FILE_SIZE0x80131463Unable to determine store file size.
ISS_E_CREATE_MUTEX0x80131464Unable to create mutex.
ISS_E_LOCK_FAILED0x80131465Unable to lock the store.
ISS_E_FILE_WRITE0x80131466File Write failed.
ISS_E_SET_FILE_POINTER0x80131467Cannot set file pointer.
ISS_E_CREATE_DIR0x80131468Unable to create the store directory.
ISS_E_STORE_NOT_OPEN0x80131469Store must be open for this operation.
ISS_E_CORRUPTED_STORE_FILE0x80131480Store file is corrupt.
ISS_E_STORE_VERSION0x80131481Store version is not supported.
ISS_E_FILE_NOT_MAPPED0x80131482Store file is not mapped.
ISS_E_BLOCK_SIZE_TOO_SMALL0x80131483Block size is too small.
ISS_E_ALLOC_TOO_LARGE0x80131484Allocation size is too large.
ISS_E_USAGE_WILL_EXCEED_QUOTA0x80131485Allowed quota is fully used.
ISS_E_TABLE_ROW_NOT_FOUND0x80131486Row not found.
ISS_E_DEPRECATE0x801314a0N/A
ISS_E_CALLER0x801314a1N/A
ISS_E_PATH_LENGTH0x801314a2N/A
ISS_E_MACHINE0x801314a3N/A
ISS_E_MACHINE_DACL0x801314a4N/A
ISS_E_ISOSTORE_END0x801314ffN/A
COR_E_EXCEPTION0x80131500General Exception
COR_E_SYSTEM0x80131501System.Exception
COR_E_ARGUMENTOUTOFRANGE0x80131502An argument was out of its legal range.
COR_E_ARRAYTYPEMISMATCH0x80131503Attempted to store an object of the wrong type in an array.
COR_E_CONTEXTMARSHAL0x80131504Attempted to marshal an object across a context boundary.
COR_E_TIMEOUT0x80131505Operation timed out.
COR_E_EXECUTIONENGINE0x80131506Internal CLR error.
COR_E_FIELDACCESS0x80131507Access to this field is denied.
COR_E_INDEXOUTOFRANGE0x80131508Array subscript out of range.
COR_E_INVALIDOPERATION0x80131509An operation is not legal in the current state.
COR_E_SECURITY0x8013150aOLE Variant has an invalid type.
COR_E_REMOTING0x8013150bAn expected resource in the assembly manifest was missing.
COR_E_SERIALIZATION0x8013150cA mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata.
COR_E_VERIFICATION0x8013150dUncaught exception during type initialization.
COR_E_SERVER0x8013150eInvalid marshaling directives.
COR_E_SERVICEDCOMPONENT0x8013150fAn expected satellite assembly containing the ultimate fallback resources for a given culture was not found or could not be loaded.
COR_E_METHODACCESS0x80131510Access to this method is denied.
COR_E_MISSINGFIELD0x80131511Field does not exist.
COR_E_MISSINGMEMBER0x80131512Member does not exist.
COR_E_MISSINGMETHOD0x80131513Method does not exist.
COR_E_MULTICASTNOTSUPPORTED0x80131514Attempt to combine delegates that are not multicast.
COR_E_NOTSUPPORTED0x80131515Operation is not supported.
COR_E_OVERFLOW0x80131516Arithmetic, casting or conversion operation overflowed or underflowed.
COR_E_RANK0x80131517An array has the wrong number of dimensions for a particular operation.
COR_E_SYNCHRONIZATIONLOCK0x80131518This operation must be called from a synchronized block.
COR_E_THREADINTERRUPTED0x80131519Thread was interrupted from a waiting state.
COR_E_MEMBERACCESS0x8013151aA datatype misalignment was detected in a load or store instruction.
COR_E_THREADSTATE0x80131520Thread is in an invalid state for this operation.
COR_E_THREADSTOP0x80131521Thread is stopping.
COR_E_TYPELOAD0x80131522Could not find or load a type.
COR_E_ENTRYPOINTNOTFOUND0x80131523Could not find the specified DllImport entrypoint.
COR_E_DLLNOTFOUND0x80131524Could not find the specified DllImport Dll.
COR_E_THREADSTART0x80131525N/A
COR_E_INVALIDCOMOBJECT0x80131527An invalid __ComObject has been used.
COR_E_NOTFINITENUMBER0x80131528Not a Number.
COR_E_DUPLICATEWAITOBJECT0x80131529An object appears more than once in the wait objects array.
COR_E_SEMAPHOREFULL0x8013152bN/A
COR_E_WAITHANDLECANNOTBEOPENED0x8013152cN/A
COR_E_ABANDONEDMUTEX0x8013152dN/A
COR_E_THREADABORTED0x80131530Thread has aborted.
COR_E_INVALIDOLEVARIANTTYPE0x80131531OLE Variant has an invalid type.
COR_E_MISSINGMANIFESTRESOURCE0x80131532An expected resource in the assembly manifest was missing.
COR_E_SAFEARRAYTYPEMISMATCH0x80131533A mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata.
COR_E_TYPEINITIALIZATION0x80131534Uncaught exception during type initialization.
COR_E_MARSHALDIRECTIVE0x80131535Invalid marshaling directives.
COR_E_MISSINGSATELLITEASSEMBLY0x80131536An expected satellite assembly containing the ultimate fallback resources for a given culture was not found or could not be loaded.
COR_E_FORMAT0x80131537The format of one argument does not meet the contract of the method.
COR_E_SAFEARRAYRANKMISMATCH0x80131538A mismatch has occurred between the runtime rank of the array and the rank recorded in the metadata.
COR_E_PLATFORMNOTSUPPORTED0x80131539Operation is not supported on this platform.
COR_E_INVALIDPROGRAM0x8013153aN/A
COR_E_OPERATIONCANCELED0x8013153bN/A
COR_E_INSUFFICIENTMEMORY0x8013153dN/A
COR_E_RUNTIMEWRAPPED0x8013153eN/A
COR_E_DEVICESNOTSUPPORTED0x80131540Devices not supported.
COR_E_DATAMISALIGNED0x80131541A datatype misalignment was detected in a load or store instruction.
COR_E_CODECONTRACTFAILED0x80131542A managed code contract (ie, precondition, postcondition, invariant, or assert) failed.
COR_E_TYPEACCESS0x80131543Access to this type is denied.
COR_E_KEYNOTFOUND0x80131577The given key was not present in the dictionary.
COR_E_INSUFFICIENTEXECUTIONSTACK0x80131578Insufficient 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.
COR_E_APPLICATION0x80131600Application exception
COR_E_INVALIDFILTERCRITERIA0x80131601The given filter criteria does not match the filter content.
COR_E_REFLECTIONTYPELOAD0x80131602Could not find or load a specific class that was requested through Reflection.
COR_E_TARGET0x80131603Attempt to invoke non-static method with a null Object.
COR_E_TARGETINVOCATION0x80131604Uncaught exception thrown by method called through Reflection.
COR_E_CUSTOMATTRIBUTEFORMAT0x80131605Custom attribute has invalid format.
COR_E_IO0x80131620Error during managed I/O.
COR_E_FILELOAD0x80131621Could not find or load a specific file.
COR_E_OBJECTDISPOSED0x80131622The object has already been disposed.
COR_E_FAILFAST0x80131623Runtime operation halted by call to System.Environment.FailFast().
COR_E_HOSTPROTECTION0x80131640The host has forbidden this operation.
COR_E_ILLEGAL_REENTRANCY0x80131641Attempted to call into managed code when executing inside a low level extensibility point.
CLR_E_SHIM_RUNTIMELOAD0x80131700Failed to load the runtime.
CLR_E_SHIM_RUNTIMEEXPORT0x80131701Failed to find a required export in the runtime.
CLR_E_SHIM_INSTALLROOT0x80131702Install root is not defined.
CLR_E_SHIM_INSTALLCOMP0x80131703Expected component of the runtime is not available.
CLR_E_SHIM_LEGACYRUNTIMEALREADYBOUND0x80131704A runtime has already been bound for legacy activation policy use.
CLR_E_SHIM_SHUTDOWNINPROGRESS0x80131705The operation is invalid because the process may be shutting down.
VER_E_HRESULT0x80131801N/A
VER_E_OFFSET0x80131802N/A
VER_E_OPCODE0x80131803N/A
VER_E_OPERAND0x80131804N/A
VER_E_TOKEN0x80131805N/A
VER_E_EXCEPT0x80131806N/A
VER_E_STACK_SLOT0x80131807N/A
VER_E_LOC0x80131808N/A
VER_E_ARG0x80131809N/A
VER_E_FOUND0x8013180aFilter contains handler.
VER_E_EXPECTED0x8013180bNested filters.
VER_E_LOC_BYNAME0x8013180cfilter >= code size
VER_E_UNKNOWN_OPCODE0x80131810Unknown opcode.
VER_E_SIG_CALLCONV0x80131811Unknown calling convention.
VER_E_SIG_ELEMTYPE0x80131812Unknown ELEMENT_TYPE.
VER_E_RET_SIG0x80131814[return sig]
VER_E_FIELD_SIG0x80131815[field sig]
VER_E_INTERNAL0x80131818Internal error.
VER_E_STACK_TOO_LARGE0x80131819Stack is too large.
VER_E_ARRAY_NAME_LONG0x8013181aBranch out of exception handler block.
VER_E_FALLTHRU0x80131820fall through end of the method without returning
VER_E_TRY_GTEQ_END0x80131821try start >= try end
VER_E_TRYEND_GT_CS0x80131822try end > code size
VER_E_HND_GTEQ_END0x80131823handler start >= handler end
VER_E_HNDEND_GT_CS0x80131824handler end > code size
VER_E_FLT_GTEQ_CS0x80131825N/A
VER_E_TRY_START0x80131826Try starts in the middle of an instruction.
VER_E_HND_START0x80131827Handler starts in the middle of an instruction.
VER_E_FLT_START0x80131828N/A
VER_E_TRY_OVERLAP0x80131829Try block overlap with another block.
VER_E_TRY_EQ_HND_FIL0x8013182aBranch back when this is uninitialized.
VER_E_TRY_SHARE_FIN_FAL0x8013182bldftn and ldvirtftn not allowed on .ctor.
VER_E_HND_OVERLAP0x8013182cNon-compatible types on the stack.
VER_E_HND_EQ0x8013182dUnexpected type on the stack.
VER_E_FIL_OVERLAP0x8013182eMissing stack slot for exception.
VER_E_FIL_EQ0x8013182fStack overflow.
VER_E_FIL_CONT_TRY0x80131830Filter contains try.
VER_E_FIL_CONT_HND0x80131831Filter contains handler.
VER_E_FIL_CONT_FIL0x80131832Nested filters.
VER_E_FIL_GTEQ_CS0x80131833filter >= code size
VER_E_FIL_START0x80131834Filter starts in the middle of an instruction.
VER_E_FALLTHRU_EXCEP0x80131835fallthru the end of an exception block
VER_E_FALLTHRU_INTO_HND0x80131836fallthru into an exception handler
VER_E_FALLTHRU_INTO_FIL0x80131837fallthru into an exception filter
VER_E_LEAVE0x80131838Leave from outside a try or catch block.
VER_E_RETHROW0x80131839Rethrow from outside a catch handler.
VER_E_ENDFINALLY0x8013183aExpected pointer to function on the stack.
VER_E_ENDFILTER0x8013183bExpected single dimension array on the stack.
VER_E_ENDFILTER_MISSING0x8013183cExpected value type instance on the stack.
VER_E_BR_INTO_TRY0x8013183dExpected address of value type on the stack.
VER_E_BR_INTO_HND0x8013183eUnexpected value type instance on the stack.
VER_E_BR_INTO_FIL0x8013183fLocal variable is unusable at this point.
VER_E_BR_OUTOF_TRY0x80131840Branch out of try block.
VER_E_BR_OUTOF_HND0x80131841Branch out of exception handler block.
VER_E_BR_OUTOF_FIL0x80131842Branch out of exception filter block.
VER_E_BR_OUTOF_FIN0x80131843Branch out of finally block.
VER_E_RET_FROM_TRY0x80131844Return out of try block.
VER_E_RET_FROM_HND0x80131845Return out of exception handler block.
VER_E_RET_FROM_FIL0x80131846Return out of exception filter block.
VER_E_BAD_JMP_TARGET0x80131847jmp / exception into the middle of an instruction.
VER_E_PATH_LOC0x80131848Non-compatible types depending on path.
VER_E_PATH_THIS0x80131849Init state for this differs depending on path.
VER_E_PATH_STACK0x8013184aStack must be empty on return from a void function.
VER_E_PATH_STACK_DEPTH0x8013184bReturn value missing on the stack.
VER_E_THIS0x8013184cStack must contain only the return value.
VER_E_THIS_UNINIT_EXCEP0x8013184dReturn uninitialized data.
VER_E_THIS_UNINIT_STORE0x8013184eIllegal array access.
VER_E_THIS_UNINIT_RET0x8013184fStore non Object type into Object array.
VER_E_THIS_UNINIT_V_RET0x80131850Return from .ctor before all fields are initialized.
VER_E_THIS_UNINIT_BR0x80131851Branch back when this is uninitialized.
VER_E_LDFTN_CTOR0x80131852ldftn and ldvirtftn not allowed on .ctor.
VER_E_STACK_NOT_EQ0x80131853Non-compatible types on the stack.
VER_E_STACK_UNEXPECTED0x80131854Unexpected type on the stack.
VER_E_STACK_EXCEPTION0x80131855Missing stack slot for exception.
VER_E_STACK_OVERFLOW0x80131856Stack overflow.
VER_E_STACK_UNDERFLOW0x80131857Stack underflow.
VER_E_STACK_EMPTY0x80131858Stack empty.
VER_E_STACK_UNINIT0x80131859Uninitialized item on stack.
VER_E_STACK_I_I4_I80x8013185aAddress of not allowed for this item.
VER_E_STACK_R_R4_R80x8013185bAddress of not allowed for ByRef.
VER_E_STACK_NO_R_I80x8013185cAddress of not allowed for literal field.
VER_E_STACK_NUMERIC0x8013185dCannot change initonly field outside its .ctor.
VER_E_STACK_OBJREF0x8013185eCannot throw this object.
VER_E_STACK_P_OBJREF0x8013185fCallvirt on a value type method.
VER_E_STACK_BYREF0x80131860Expected ByRef on the stack.
VER_E_STACK_METHOD0x80131861Expected pointer to function on the stack.
VER_E_STACK_ARRAY_SD0x80131862Expected single dimension array on the stack.
VER_E_STACK_VALCLASS0x80131863Expected value type instance on the stack.
VER_E_STACK_P_VALCLASS0x80131864Expected address of value type on the stack.
VER_E_STACK_NO_VALCLASS0x80131865Unexpected value type instance on the stack.
VER_E_LOC_DEAD0x80131866Local variable is unusable at this point.
VER_E_LOC_NUM0x80131867Unrecognized local variable number.
VER_E_ARG_NUM0x80131868Unrecognized argument number.
VER_E_TOKEN_RESOLVE0x80131869Unable to resolve token.
VER_E_TOKEN_TYPE0x8013186aELEMENT_TYPE_PTR cannot be verified.
VER_E_TOKEN_TYPE_MEMBER0x8013186bUnexpected vararg.
VER_E_TOKEN_TYPE_FIELD0x8013186cUnexpected Void.
VER_E_TOKEN_TYPE_SIG0x8013186dByRef of ByRef
VER_E_UNVERIFIABLE0x8013186eN/A
VER_E_LDSTR_OPERAND0x8013186fCode size is zero.
VER_E_RET_PTR_TO_STACK0x80131870Return type is ByRef, TypedReference, ArgHandle, or ArgIterator.
VER_E_RET_VOID0x80131871Stack must be empty on return from a void function.
VER_E_RET_MISSING0x80131872Return value missing on the stack.
VER_E_RET_EMPTY0x80131873Stack must contain only the return value.
VER_E_RET_UNINIT0x80131874Return uninitialized data.
VER_E_ARRAY_ACCESS0x80131875Illegal array access.
VER_E_ARRAY_V_STORE0x80131876Store non Object type into Object array.
VER_E_ARRAY_SD0x80131877Expected single dimension array.
VER_E_ARRAY_SD_PTR0x80131878Expected single dimension array of pointer types.
VER_E_ARRAY_FIELD0x80131879Array field access is denied.
VER_E_ARGLIST0x8013187aLexical nesting.
VER_E_VALCLASS0x8013187bMissing ldsfld, stsfld, ldind, stind, ldfld, stfld, ldobj, stobj, initblk or cpblk.
VER_E_METHOD_ACCESS0x8013187cMissing ldind, stind, ldfld, stfld, ldobj, stobj, initblk or cpblk.
VER_E_FIELD_ACCESS0x8013187dInnermost exception blocks should be declared first.
VER_E_DEAD0x8013187eCalli not allowed on virtual methods.
VER_E_FIELD_STATIC0x8013187fCall not allowed on abstract methods.
VER_E_FIELD_NO_STATIC0x80131880Expected non-static field.
VER_E_ADDR0x80131881Address of not allowed for this item.
VER_E_ADDR_BYREF0x80131882Address of not allowed for ByRef.
VER_E_ADDR_LITERAL0x80131883Address of not allowed for literal field.
VER_E_INITONLY0x80131884Cannot change initonly field outside its .ctor.
VER_E_THROW0x80131885Cannot throw this object.
VER_E_CALLVIRT_VALCLASS0x80131886Callvirt on a value type method.
VER_E_CALL_SIG0x80131887Call signature mismatch.
VER_E_CALL_STATIC0x80131888Static function expected.
VER_E_CTOR0x80131889.ctor expected.
VER_E_CTOR_VIRT0x8013188aBox operation on TypedReference, ArgHandle, or ArgIterator.
VER_E_CTOR_OR_SUPER0x8013188bByRef of TypedReference, ArgHandle, or ArgIterator.
VER_E_CTOR_MUL_INIT0x8013188cArray of TypedReference, ArgHandle, or ArgIterator.
VER_E_SIG0x8013188dStack not empty when leaving an exception filter.
VER_E_SIG_ARRAY0x8013188eUnrecognized delegate .ctor signature; expected I.
VER_E_SIG_ARRAY_PTR0x8013188fUnrecognized delegate .ctor signature; expected Object.
VER_E_SIG_ARRAY_BYREF0x80131890Array of ELEMENT_TYPE_BYREF or ELEMENT_TYPE_TYPEDBYREF.
VER_E_SIG_ELEM_PTR0x80131891ELEMENT_TYPE_PTR cannot be verified.
VER_E_SIG_VARARG0x80131892Unexpected vararg.
VER_E_SIG_VOID0x80131893Unexpected Void.
VER_E_SIG_BYREF_BYREF0x80131894ByRef of ByRef
VER_E_CODE_SIZE_ZERO0x80131896Code size is zero.
VER_E_BAD_VARARG0x80131897Unrecognized use of vararg.
VER_E_TAIL_CALL0x80131898Missing call, callvirt or calli.
VER_E_TAIL_BYREF0x80131899Cannot pass ByRef to a tail call.
VER_E_TAIL_RET0x8013189aExpected address of value type, ObjRef type or variable type on the stack.
VER_E_TAIL_RET_VOID0x8013189bUnrecognized type parameter of enclosing class.
VER_E_TAIL_RET_TYPE0x8013189cUnrecognized type parameter of enclosing method.
VER_E_TAIL_STACK_EMPTY0x8013189dUnrecognized type argument of referenced class instantiation.
VER_E_METHOD_END0x8013189eUnrecognized type argument of referenced method instantiation.
VER_E_BAD_BRANCH0x8013189fCannot resolve generic type.
VER_E_FIN_OVERLAP0x801318a0Invalid field token in FieldRVA record.
VER_E_LEXICAL_NESTING0x801318a1Duplicate RVA in FieldRVA record.
VER_E_VOLATILE0x801318a2Duplicate field in FieldRVA record.
VER_E_UNALIGNED0x801318a3Bad token as entry point in CLR header.
VER_E_INNERMOST_FIRST0x801318a4Entry point in CLR header is a token of instance method.
VER_E_CALLI_VIRTUAL0x801318a5Enum has non-integral underlying type.
VER_E_CALL_ABSTRACT0x801318a6Method has bogus RVA.
VER_E_STACK_UNEXP_ARRAY0x801318a7Literal field has no const value.
VER_E_NOT_IN_GC_HEAP0x801318a8Class implementing an interface does not implement one of methods.
VER_E_TRY_N_EMPTY_STACK0x801318a9CA has invalid owner.
VER_E_DLGT_CTOR0x801318aaMethod signature is generic but is missing its arity.
VER_E_DLGT_BB0x801318abMethod signature is generic but its arity is zero.
VER_E_DLGT_PATTERN0x801318acSignature has generic type instantiated at arity 0.
VER_E_DLGT_LDFTN0x801318adMethodSpec signature has arity 0.
VER_E_FTN_ABSTRACT0x801318aeMethodDef signature has arity n but owns m GenericParams.
VER_E_SIG_C_VC0x801318afEntry point in CLR header is the token for a method in a generic type.
VER_E_SIG_VC_C0x801318b0Method has invalid header.
VER_E_BOX_PTR_TO_STACK0x801318b1Entry point has more than one argument.
VER_E_SIG_BYREF_TB_AH0x801318b2Entry point has bad return type.
VER_E_SIG_ARRAY_TB_AH0x801318b3Entry point has bad argument.
VER_E_ENDFILTER_STACK0x801318b4Illegal 'void' in signature.
VER_E_DLGT_SIG_I0x801318b5Multiple implementation of method.
VER_E_DLGT_SIG_O0x801318b6GenericParam name is NULL.
VER_E_RA_PTR_TO_STACK0x801318b7GenericParam has nil owner.
VER_E_CATCH_VALUE_TYPE0x801318b8GenericParam has duplicate by owner and name.
VER_E_CATCH_BYREF0x801318b9GenericParam has duplicate by owner and number.
VER_E_FIL_PRECEED_HND0x801318baWarning: Class does not implement interface method in this module.
VER_E_LDVIRTFTN_STATIC0x801318bbTypeLib export: attempted to export an Assembly imported from a TLB.
VER_E_CALLVIRT_STATIC0x801318bcN/A
VER_E_INITLOCALS0x801318bdN/A
VER_E_BR_TO_EXCEPTION0x801318beN/A
VER_E_CALL_CTOR0x801318bfN/A
VER_E_VALCLASS_OBJREF_VAR0x801318c0GenericParamConstraint has nil owner.
VER_E_STACK_P_VALCLASS_OBJREF_VAR0x801318c1GenericParamConstraint has duplicate by owner and constraint.
VER_E_SIG_VAR_PARAM0x801318c2GenericParamConstraint is non-contiguous with preceeding constraints for same owner.
VER_E_SIG_MVAR_PARAM0x801318c3MethodSpec has nil method.
VER_E_SIG_VAR_ARG0x801318c4MethodSpec has duplicate based on method and instantiation.
VER_E_SIG_MVAR_ARG0x801318c5MethodSpec signature has invalid calling convention.
VER_E_SIG_GENERICINST0x801318c6MethodSpec signature is missing arity specification.
VER_E_SIG_METHOD_INST0x801318c7MethodSpec signature is missing type argument.
VER_E_SIG_METHOD_PARENT_INST0x801318c8MethodSpec arity of generic method and instantiation do not match.
VER_E_SIG_FIELD_PARENT_INST0x801318c9MethodSpec method is not generic.
VER_E_CALLCONV_NOT_GENERICINST0x801318caN/A
VER_E_TOKEN_BAD_METHOD_SPEC0x801318cbN/A
VER_E_BAD_READONLY_PREFIX0x801318ccN/A
VER_E_BAD_CONSTRAINED_PREFIX0x801318cdN/A
VER_E_CIRCULAR_VAR_CONSTRAINTS0x801318ceN/A
VER_E_CIRCULAR_MVAR_CONSTRAINTS0x801318cfN/A
VER_E_UNSATISFIED_METHOD_INST0x801318d0Entry point in CLR header is the token for a generic method.
VER_E_UNSATISFIED_METHOD_PARENT_INST0x801318d1Method signature is generic but is missing its arity.
VER_E_UNSATISFIED_FIELD_PARENT_INST0x801318d2Method signature is generic but its arity is zero.
VER_E_UNSATISFIED_BOX_OPERAND0x801318d3Signature has generic type instantiated at arity 0.
VER_E_CONSTRAINED_CALL_WITH_NON_BYREF_THIS0x801318d4MethodSpec signature has arity 0.
VER_E_CONSTRAINED_OF_NON_VARIABLE_TYPE0x801318d5MethodDef signature has arity n but owns m GenericParams.
VER_E_READONLY_UNEXPECTED_CALLEE0x801318d6Entry point in CLR header is the token for a method in a generic type.
VER_E_READONLY_ILLEGAL_WRITE0x801318d7MethodImpl overrides non-generic method with generic method.
VER_E_READONLY_IN_MKREFANY0x801318d8MethodImpl overrides non-generic method with generic method.
VER_E_UNALIGNED_ALIGNMENT0x801318d9MethodImpl overrides generic method of arity n with generic method of arity m.
VER_E_TAILCALL_INSIDE_EH0x801318daN/A
VER_E_BACKWARD_BRANCH0x801318dbN/A
VER_E_CALL_TO_VTYPE_BASE0x801318dcN/A
VER_E_NEWOBJ_OF_ABSTRACT_CLASS0x801318ddN/A
VER_E_UNMANAGED_POINTER0x801318deN/A
VER_E_LDFTN_NON_FINAL_VIRTUAL0x801318dfN/A
VER_E_FIELD_OVERLAP0x801318e0Signature has token following ELEMENT_TYPE_CLASS (_VALUETYPE) that is not a TypeDef or TypeRef.
VER_E_THIS_MISMATCH0x801318e1Warning: Class does not implement interface method in this module.
VER_E_STACK_I_I40x801318e2TypeLib export: attempted to export an Assembly imported from a TLB.
VER_E_BAD_PE0x801318f0N/A
VER_E_BAD_MD0x801318f1N/A
VER_E_BAD_APPDOMAIN0x801318f2N/A
VER_E_TYPELOAD0x801318f3N/A
VER_E_PE_LOAD0x801318f4N/A
VER_E_WRITE_RVA_STATIC0x801318f5N/A
COR_E_SqlException0x80131904N/A
COR_E_Data0x80131920N/A
COR_E_DataDeletedRowInaccessible0x80131921N/A
COR_E_DataDuplicateName0x80131922N/A
COR_E_DataInRowChangingEvent0x80131923N/A
COR_E_DataInvalidConstraint0x80131924N/A
COR_E_DataMissingPrimaryKey0x80131925N/A
COR_E_DataNoNullAllowed0x80131926N/A
COR_E_DataReadOnly0x80131927N/A
COR_E_DataRowNotInTable0x80131928N/A
COR_E_DataVersionNotFound0x80131929N/A
COR_E_DataConstraint0x8013192aN/A
COR_E_StrongTyping0x8013192bN/A
COR_E_SqlType0x80131930N/A
COR_E_SqlNullValue0x80131931N/A
COR_E_SqlTruncate0x80131932N/A
COR_E_AdapterMapping0x80131933N/A
COR_E_DataAdapter0x80131934N/A
COR_E_DBConcurrency0x80131935N/A
COR_E_OperationAborted0x80131936N/A
COR_E_InvalidUdt0x80131937N/A
COR_E_OdbcException0x80131937N/A
COR_E_OracleException0x80131938N/A
COR_E_Xml0x80131940N/A
COR_E_XmlSchema0x80131941N/A
COR_E_XmlXslt0x80131942N/A
COR_E_XmlXPath0x80131943N/A
COR_E_XmlQuery0x80131944N/A
VLDTR_E_IFACE_NOTIFACE0x80131b00N/A
VLDTR_E_FD_RVAHASNORVA0x80131b01N/A
VLDTR_E_FD_RVAHASZERORVA0x80131b02N/A
VLDTR_E_MD_RVAANDIMPLMAP0x80131b03N/A
VLDTR_E_TD_EXTRAFLAGS0x80131b04N/A
VLDTR_E_TD_EXTENDSITSELF0x80131b05N/A
VLDTR_E_TD_SYSVTNOTEXTOBJ0x80131b06N/A
VLDTR_E_TD_EXTTYPESPEC0x80131b07N/A
VLDTR_E_TD_VTNOSIZE0x80131b09N/A
VLDTR_E_TD_IFACESEALED0x80131b0aN/A
VLDTR_E_NC_BADNESTED0x80131b0bN/A
VLDTR_E_NC_BADENCLOSER0x80131b0cN/A
VLDTR_E_NC_DUP0x80131b0dN/A
VLDTR_E_NC_DUPENCLOSER0x80131b0eN/A
VLDTR_E_FRVA_ZERORVA0x80131b0fN/A
VLDTR_E_FRVA_BADFIELD0x80131b10N/A
VLDTR_E_FRVA_DUPRVA0x80131b11N/A
VLDTR_E_FRVA_DUPFIELD0x80131b12N/A
VLDTR_E_EP_BADTOKEN0x80131b13N/A
VLDTR_E_EP_INSTANCE0x80131b14N/A
VLDTR_E_TD_ENUMFLDBADTYPE0x80131b15N/A
VLDTR_E_MD_BADRVA0x80131b16N/A
VLDTR_E_FD_LITERALNODEFAULT0x80131b17N/A
VLDTR_E_IFACE_METHNOTIMPL0x80131b18N/A
VLDTR_E_CA_BADPARENT0x80131b19N/A
VLDTR_E_CA_BADTYPE0x80131b1aN/A
VLDTR_E_CA_NOTCTOR0x80131b1bN/A
VLDTR_E_CA_BADSIG0x80131b1cN/A
VLDTR_E_CA_NOSIG0x80131b1dN/A
VLDTR_E_CA_BADPROLOG0x80131b1eN/A
VLDTR_E_MD_BADLOCALSIGTOK0x80131b1fN/A
VLDTR_E_MD_BADHEADER0x80131b20N/A
VLDTR_E_EP_TOOMANYARGS0x80131b21N/A
VLDTR_E_EP_BADRET0x80131b22N/A
VLDTR_E_EP_BADARG0x80131b23N/A
VLDTR_E_SIG_BADVOID0x80131b24N/A
VLDTR_E_IFACE_METHMULTIMPL0x80131b25N/A
VLDTR_E_GP_NAMENULL0x80131b26N/A
VLDTR_E_GP_OWNERNIL0x80131b27N/A
VLDTR_E_GP_DUPNAME0x80131b28N/A
VLDTR_E_GP_DUPNUMBER0x80131b29N/A
VLDTR_E_GP_NONSEQ_BY_OWNER0x80131b2aN/A
VLDTR_E_GP_NONSEQ_BY_NUMBER0x80131b2bN/A
VLDTR_E_GP_UNEXPECTED_OWNER_FOR_VARIANT_VAR0x80131b2cN/A
VLDTR_E_GP_ILLEGAL_VARIANT_MVAR0x80131b2dN/A
VLDTR_E_GP_ILLEGAL_VARIANCE_FLAGS0x80131b2eN/A
VLDTR_E_GP_REFANDVALUETYPE0x80131b2fN/A
VLDTR_E_GPC_OWNERNIL0x80131b30N/A
VLDTR_E_GPC_DUP0x80131b31N/A
VLDTR_E_GPC_NONCONTIGUOUS0x80131b32N/A
VLDTR_E_MS_METHODNIL0x80131b33N/A
VLDTR_E_MS_DUP0x80131b34N/A
VLDTR_E_MS_BADCALLINGCONV0x80131b35N/A
VLDTR_E_MS_MISSARITY0x80131b36N/A
VLDTR_E_MS_MISSARG0x80131b37N/A
VLDTR_E_MS_ARITYMISMATCH0x80131b38N/A
VLDTR_E_MS_METHODNOTGENERIC0x80131b39N/A
VLDTR_E_SIG_MISSARITY0x80131b3aN/A
VLDTR_E_SIG_ARITYMISMATCH0x80131b3bN/A
VLDTR_E_MD_GENERIC_CCTOR0x80131b3cN/A
VLDTR_E_MD_GENERIC_CTOR0x80131b3dN/A
VLDTR_E_MD_GENERIC_IMPORT0x80131b3eN/A
VLDTR_E_MD_GENERIC_BADCALLCONV0x80131b3fN/A
VLDTR_E_EP_GENERIC_METHOD0x80131b40N/A
VLDTR_E_MD_MISSARITY0x80131b41N/A
VLDTR_E_MD_ARITYZERO0x80131b42N/A
VLDTR_E_SIG_ARITYZERO0x80131b43N/A
VLDTR_E_MS_ARITYZERO0x80131b44N/A
VLDTR_E_MD_GPMISMATCH0x80131b45N/A
VLDTR_E_EP_GENERIC_TYPE0x80131b46N/A
VLDTR_E_MI_DECLNOTGENERIC0x80131b47N/A
VLDTR_E_MI_IMPLNOTGENERIC0x80131b48N/A
VLDTR_E_MI_ARITYMISMATCH0x80131b49N/A
VLDTR_E_TD_EXTBADTYPESPEC0x80131b4aN/A
VLDTR_E_SIG_BYREFINST0x80131b4bN/A
VLDTR_E_MS_BYREFINST0x80131b4cN/A
VLDTR_E_TS_EMPTY0x80131b4dN/A
VLDTR_E_TS_HASSENTINALS0x80131b4eN/A
VLDTR_E_TD_GENERICHASEXPLAYOUT0x80131b4fN/A
VLDTR_E_SIG_BADTOKTYPE0x80131b50N/A
VLDTR_E_IFACE_METHNOTIMPLTHISMOD0x80131b51N/A
TLBX_E_CIRCULAR_EXPORT20x80131b52N/A
CORDBG_E_THREAD_NOT_SCHEDULED0x80131c00N/A
CORDBG_E_HANDLE_HAS_BEEN_DISPOSED0x80131c01N/A
CORDBG_E_NONINTERCEPTABLE_EXCEPTION0x80131c02N/A
CORDBG_E_CANT_UNWIND_ABOVE_CALLBACK0x80131c03N/A
CORDBG_E_INTERCEPT_FRAME_ALREADY_SET0x80131c04N/A
CORDBG_E_NO_NATIVE_PATCH_AT_ADDR0x80131c05N/A
CORDBG_E_MUST_BE_INTEROP_DEBUGGING0x80131c06N/A
CORDBG_E_NATIVE_PATCH_ALREADY_AT_ADDR0x80131c07N/A
CORDBG_E_TIMEOUT0x80131c08N/A
CORDBG_E_CANT_CALL_ON_THIS_THREAD0x80131c09N/A
CORDBG_E_ENC_INFOLESS_METHOD0x80131c0aN/A
CORDBG_E_ENC_NESTED_HANLDERS0x80131c0bN/A
CORDBG_E_ENC_IN_FUNCLET0x80131c0cN/A
CORDBG_E_ENC_LOCALLOC0x80131c0dN/A
CORDBG_E_ENC_EDIT_NOT_SUPPORTED0x80131c0eN/A
CORDBG_E_FEABORT_DELAYED_UNTIL_THREAD_RESUMED0x80131c0fN/A
CORDBG_E_NOTREADY0x80131c10N/A
CORDBG_E_CANNOT_RESOLVE_ASSEMBLY0x80131c11N/A
CORDBG_E_MUST_BE_IN_LOAD_MODULE0x80131c12N/A
CORDBG_E_CANNOT_BE_ON_ATTACH0x80131c13N/A
CORDBG_E_NGEN_NOT_SUPPORTED0x80131c14N/A
CORDBG_E_ILLEGAL_SHUTDOWN_ORDER0x80131c15N/A
CORDBG_E_CANNOT_DEBUG_FIBER_PROCESS0x80131c16N/A
CORDBG_E_MUST_BE_IN_CREATE_PROCESS0x80131c17N/A
CORDBG_E_DETACH_FAILED_OUTSTANDING_EVALS0x80131c18N/A
CORDBG_E_DETACH_FAILED_OUTSTANDING_STEPPERS0x80131c19N/A
CORDBG_E_CANT_INTEROP_STEP_OUT0x80131c20N/A
CORDBG_E_DETACH_FAILED_OUTSTANDING_BREAKPOINTS0x80131c21N/A
CORDBG_E_ILLEGAL_IN_STACK_OVERFLOW0x80131c22N/A
CORDBG_E_ILLEGAL_AT_GC_UNSAFE_POINT0x80131c23N/A
CORDBG_E_ILLEGAL_IN_PROLOG0x80131c24N/A
CORDBG_E_ILLEGAL_IN_NATIVE_CODE0x80131c25N/A
CORDBG_E_ILLEGAL_IN_OPTIMIZED_CODE0x80131c26N/A
CORDBG_E_MINIDUMP_UNSUPPORTED0x80131c27N/A
CORDBG_E_APPDOMAIN_MISMATCH0x80131c28N/A
CORDBG_E_CONTEXT_UNVAILABLE0x80131c29N/A
CORDBG_E_UNCOMPATIBLE_PLATFORMS0x80131c30N/A
CORDBG_E_DEBUGGING_DISABLED0x80131c31N/A
CORDBG_E_DETACH_FAILED_ON_ENC0x80131c32N/A
CORDBG_E_CURRENT_EXCEPTION_IS_OUTSIDE_CURRENT_EXECUTION_SCOPE0x80131c33N/A
CORDBG_E_HELPER_MAY_DEADLOCK0x80131c34N/A
CORDBG_E_MISSING_METADATA0x80131c35N/A
CORDBG_E_TARGET_INCONSISTENT0x80131c36N/A
CORDBG_E_DETACH_FAILED_OUTSTANDING_TARGET_RESOURCES0x80131c37N/A
CORDBG_E_TARGET_READONLY0x80131c38N/A
CORDBG_E_MISMATCHED_CORWKS_AND_DACWKS_DLLS0x80131c39N/A
CORDBG_E_MODULE_LOADED_FROM_DISK0x80131c3aN/A
CORDBG_E_SYMBOLS_NOT_AVAILABLE0x80131c3bN/A
CORDBG_E_DEBUG_COMPONENT_MISSING0x80131c3cN/A
CORDBG_E_REMOTE_MISMATCHED_CERTS0x80131c3dN/A
CORDBG_E_REMOTE_NETWORK_FAILURE0x80131c3eN/A
CORDBG_E_REMOTE_NO_LISTENER0x80131c3fN/A
CORDBG_E_REMOTE_UNKNOWN_TARGET0x80131c40N/A
CORDBG_E_REMOTE_INVALID_CONFIG0x80131c41N/A
CORDBG_E_REMOTE_MISMATCHED_PROTOCOLS0x80131c42N/A
CORDBG_E_LIBRARY_PROVIDER_ERROR0x80131c43N/A
CORDBG_E_NOT_CLR0x80131c44N/A
CORDBG_E_MISSING_DATA_TARGET_INTERFACE0x80131c45N/A
CORDBG_E_UNSUPPORTED_DEBUGGING_MODEL0x80131c46N/A
CORDBG_E_UNSUPPORTED_FORWARD_COMPAT0x80131c47N/A
CORDBG_E_UNSUPPORTED_VERSION_STRUCT0x80131c48N/A
CORDBG_E_READVIRTUAL_FAILURE0x80131c49N/A
CORDBG_E_VALUE_POINTS_TO_FUNCTION0x80131c4aN/A
PEFMT_E_NO_CONTENTS0x80131d00N/A
PEFMT_E_NO_NTHEADERS0x80131d01N/A
PEFMT_E_64BIT0x80131d02N/A
PEFMT_E_NO_CORHEADER0x80131d03N/A
PEFMT_E_NOT_ILONLY0x80131d04N/A
PEFMT_E_IMPORT_DLLS0x80131d05N/A
PEFMT_E_EXE_NOENTRYPOINT0x80131d06N/A
PEFMT_E_BASE_RELOCS0x80131d07N/A
PEFMT_E_ENTRYPOINT0x80131d08N/A
PEFMT_E_ZERO_SIZEOFCODE0x80131d09N/A
PEFMT_E_BAD_CORHEADER0x80131d0aN/A
PEFMT_E_32BIT0x80131d0bN/A
CLR_OPTSVC_E_CONTROLLER_INTERRUPT0x80131e00N/A
NGEN_FAILED_GET_DEPENDENCIES0x80131f00N/A
NGEN_FAILED_NATIVE_IMAGE_DELETE0x80131f01N/A
NGEN_E_TOO_MANY_INTERFACES0x80131f02N/A
NGEN_E_OLDER_RUNTIME0x80131f03N/A
NGEN_E_WORKER_UNEXPECTED_EXIT0x80131f04N/A
NGEN_E_WORKER_UNEXPECTED_SYNC0x80131f05N/A
NGEN_E_SYS_ASM_NI_MISSING0x80131f06N/A
CLDB_E_INTERNALERROR0x80131fffN/A

See Interpreting HRESULTS returned from .NET/CLR: 0x8013XXXX for more informations