Windows error 0x80131016, -2146234346

Detailed Error Information

MSEE_E_ASSEMBLYLOADINPROGRESS[1]

Message"Assembly is still being loaded."
Comment Assembly is being currently being loaded

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code4118 (0x1016)

Questions

2votes
1answer

Static class member throws an exception when constructed

I have a class which contains a static member of another class. Foo.h class Foo { static DirectXRes dxres; }; Foo.cpp DirectXRes Foo::dxres; // may throw an exception DirectXRes.h #include <SDKDDKVer.h> #ifndef WINVER #define WINVER 0x0A00 #endif #ifndef _WIN32_WINNT #define _WIN32_WINNT 0x0A00 #endif #define WIN32_LEAN_AND_MEAN #define NOMINMAX #include <Windows.h> #include [...] read more
c++
exception
static
directx
1vote
0answers

Why do i get a FileLoadException when calling CreateInstanceFrom after assigning a custom permission to an AppDomain?

I try to build an application with different AppDomains and permissions. The starting application creates a new AppDomain B and uses CreateInstanceFrom to instantiate a class from a different dll. I can also assign different (standard) permissions to the permission set i use to create the AppDomain. So far, this [...] read more
c#
appdomain
fileloadexception

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0