我正在尝试将受支持的类型添加到JsonFormatter.SupportedMediaTypes集合中并继续收到此错误:
System.ArrayTypeMismatchException:尝试以与数组不兼容的类型访问元素
我能看到数组的唯一类型是MediaTypeHeaderValue。我不能为我的生活弄清楚发生了什么。帮助!
我的代码:
Friend Sub Register(config As HttpConfiguration)
config.MapHttpAttributeRoutes()
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(New MediaTypeHeaderValue("text/html"))
End Sub