我试图连接一个windows 10物联网应用程序(uwp)到一个简单的wcf服务库。
但我总是有同样的问题:在我的.NETcore.UniversalWindowsPlateform (5.0.0)上,我有一个出丑的感觉
PlateformNotSupported
下面是连接到wcf的简单代码:
public sealed class StartupTask : IBackgroundTask
{
private InstanceContext instanceContext;
private Service1Client serviceProxy;
public void Run(IBackgroundTaskInstance taskInstance)
{
instanceContext = new InstanceContext(this);
serviceProxy = new Service1Client();
}
}对我来说,UpnEndpoint似乎还没有在我的.NETcore版本上实现
有人成功地连接到wcf和windows 10物联网吗?
发布于 2016-08-03 07:42:11
新版本的wcf现在解决了这个问题。再也没有"PlateformNotSupported“了
https://stackoverflow.com/questions/36402016
复制相似问题