找不到发现界面

时间:2014-10-10 14:58:08

标签: c# .net wcf visual-studio-2013 argumentexception

Discovery客户端代码。

var dc = new DiscoveryClient(new UdpDiscoveryEndpoint());
FindCriteria fc = new FindCriteria(typeof(IService1));
fc.Duration = TimeSpan.FromSeconds(20);
FindResponse fr = dc.Find(fc);

我正在托管wcf并且我已经能够使用我自己的发现实现来检查和查看它,但我被告知这是更快,更安全。我不知道为什么我会收到以下错误消息。

System.ArgumentException occurred
Message: A first chance exception of type 'System.ArgumentException' occurred in mscorlib.dll
Additional information: Interface not found.

关于如何解决这个问题的任何想法?

事实证明我可以运行代码并且它可以从.exe运行但是当我在visual studio调试器中运行时它不起作用。

1 个答案:

答案 0 :(得分:1)

事实证明,当我处于调试模式时,符号没有加载