MVC应用程序找到DataContractJsonSeriali

MVC应用程序找到DataContractJsonSeriali

本文介绍了无法从一个Asp.Net MVC应用程序找到DataContractJsonSerializer的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法从 System.Runtime.Serialization.Json DataContractJsonSerializer 方法>

如果我做的:

 使用System.Runtime.Serialization.Json;

我得到一个错误...

我怎样才能访问这在我的Asp.Net MVC应用程序,所以我可以使用 DataContractJsonSerializer


解决方案

请确保你所引用的DLL,其中这种类型的生活:System.ServiceModel.Web.dll

I can't get access to the DataContractJsonSerializer method from System.Runtime.Serialization.Json

If I do:

using System.Runtime.Serialization.Json;

I get an error...

How can I access this in my Asp.Net Mvc app so I can use the DataContractJsonSerializer method

解决方案

Make sure you've referenced the DLL where this type lives: System.ServiceModel.Web.dll

这篇关于无法从一个Asp.Net MVC应用程序找到DataContractJsonSerializer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 10:58