System.ServiceModel 参考资料

System.ServiceModel References

我正在尝试使用 System.ServiceModel

using System.ServiceModel; 
using System.ServiceModel.Channels;
using System.ServiceModel.PeerResolvers;

in C# winform desktop application,但我在Visual Studio 2015 中找不到它,无法将其添加到项目引用中,我猜它必须是 System.SeviceModel in Framework,不确定

任何建议都会有用

将您的项目目标框架更新为 .NET 4.5,方法是右键单击您的项目,依次转到属性、应用程序和目标框架。将目标框架更改为 .NET Framework 4.5。

在我的 VS2015 实例中,当我转到“添加引用”->“程序集”时,System.ServiceModel 就在那里,它看起来在 C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework .NETFramework\v4.5 个文件夹.

如果System.ServiceModel不在列表中,您可以尝试通过右击->管理NuGet包->浏览,搜索ServiceModel,从微软获取。