Windows error 0x8000211D, -2147475171

Detailed Error Information

COR_E_AMBIGUOUSMATCH[1]

Comment While late binding to a method via reflection, could not resolve between

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][3]
DescriptionThe default facility code.[2][3]
Error Code8477 (0x211d)

Questions

0votes
1answer

System.Reflection.AmbiguousMatchException while parsing json

unfortunately I have zero experience in C#, but I need to create JSON source in SSIS. I'm trying to download JSON, deserialize and save it to list: public override void CreateNewOutputRows() { JavaScriptSerializer serialize = new JavaScriptSerializer(); var employees = new List<Employees>(); employees = serialize.Deserialize<List<Employees>>(json); foreach (var record in employees) [...] read more
c#
json
ssis

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