Windows error 0x80131512, -2146233070

Detailed Error Information

COR_E_MISSINGMEMBER[1]

Message"Member does not exist."
Comment An attempt was made to dynamically invoke or access a field or method

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 Code5394 (0x1512)

Questions

4votes
1answer

Setting a "nullable" property on a .NET object

I have some .NET interop code where I've managed to load objects and read properties, however I am having trouble with setting a property on an object. Here's the relevant parts of the Delphi code: uses mscorlib_TLB, Winapi.ActiveX; type // Irrelevant parts of the code omitted TDotNetObject = class(TObject) private [...] read more
c#
.net
delphi
3votes
2answers

Allow managed code in hosted environment to call back unmanaged code

I have C++ code that hosts a clr in order to make use of Managed.dll, written in c#. This .net has a method like the following that allows code to register for notification of events: public void Register(IMyListener listener); The interface looks something like this public interface IMyListener { void [...] read more
c++
.net
c++-cli
clr-hosting
0votes
0answers

Access data in Nested Dictionary with Key item

I have some issue in accessing the dictionary item in VB.NET. My intension is to access the key without looping. The dictionary under consideration is nested to 4th level. The issue is that the Keys at level 1, level 2 an level 4 are known. All I need to do [...] read more
vb.net
dictionary
vsto
0votes
1answer

Cannot Pass Argument to BackgroundWorker.RunWorkerAsync (System.MissingMemberException)

I am creating a database job execution program that will allow users to automate data set retrieval from various API interfaces, and import them to our database. Once all the jobs are loaded at application start, a background worker engine_JobTrigger starts a loop that repeatedly checks the date and time [...] read more
vb.net
asynchronous
exception
arguments
backgroundworker
0votes
1answer

Using Reflection on a referenced class library

I Have A class Library namespace LabelFieldsCalc { public class LabelFields { // public string "--"; public string BARCODE128(LabelCarton carton) { return "01" + carton.EanTun + "3102" + carton.WeightBarcode.ToString() + "13" + carton.ItemProdnDate.ToString() + "21" + carton.EstNO.ToString() + carton.StationNum.ToString() + carton.ItemSerial.ToString() + "9"; } public string BARCODE128HR(LabelCarton carton) { return [...] read more
c#
reflection

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