为什么转储这个JObject会在LINQPad中抛出一个AmbiguousMatchException?

时间:2016-09-02 07:26:54

标签: json json.net linqpad linq-to-json

当我使用JSON.NET在LINQPad中运行此代码时:

var x = JObject.Parse(
@"{
  ""data"" : [ {
    ""id"" : ""bbab529ecefe58569c2b301a"",
    ""name"" : ""Sample Name"",
    ""group"" : ""8b618be8dc064e653daf62f9"",
    ""description"" : ""Sample Name"",
    ""payloadType"" : ""Geolocation"",
    ""contract"" : ""a9da09a7f4a7e7becf961865"",
    ""keepAlive"" : 0
  } ]
}");

x.Dump();

尝试将解析后的JSON转储到LINQPad的输出窗口时抛出AmbiguousMatchException。为什么?据我所知,这是完全合法的JSON。 http://jsonlint.com/说这也是有效的。

1 个答案:

答案 0 :(得分:4)

这是.Dump()最有可能实施的问题。

如果检查堆栈跟踪:

at System.RuntimeType.GetInterface(String fullname, Boolean ignoreCase)
at System.Type.GetInterface(String name)
at UserQuery.Main()
...

我们可以看到抛出异常的方法是System.RuntimeType.GetInterface

System.RuntimeType是在运行时使用反射时用于表示Type个对象的具体类之一,所以让我们检查Type.GetInterface(String, Boolean),其中包含:

  

<强> AmbiguousMatchException
  当前Type表示实现具有不同类型参数的相同通用接口的类型。

所以看起来GetInterface方法被调用了一种不止一次实现的接口类型,具有不同的T或类似的。

要引发同样的错误,只需将x.Dump();替换为:

var type = x.GetType().GetInterface("System.Collections.Generic.IEnumerable`1", true);

这将抛出相同的异常。

这是一个更简单的LINQPad示例,显示了潜在的问题:

void Main()
{
    var type = typeof(Problem).GetInterface("System.Collections.Generic.IEnumerable`1", true);
}

public class Problem : IEnumerable<string>, IEnumerable<int>
{
    IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable<string>)this).GetEnumerator();
    IEnumerator<string> IEnumerable<string>.GetEnumerator() => Enumerable.Empty<string>().GetEnumerator();
    IEnumerator<int> IEnumerable<int>.GetEnumerator() => Enumerable.Empty<int>().GetEnumerator();
}

此示例将抛出完全相同的异常。

结论:Json和Json.Net没有任何问题,这是LINQPad如何试图找出将对象转储到输出窗口的最佳方法的问题。 / p>