System.Net.Sockets.SocketException,System.ServiceModel.ClientBase和VS2010

时间:2013-01-22 17:14:39

标签: c# wcf

每次我在VS 2010中使用WCF代理客户端时,我都会收到至少3条错误消息:

A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.ServiceModel.dll
A first chance exception of type 'System.ServiceModel.CommunicationException' occurred in System.ServiceModel.dll
A first chance exception of type 'System.ServiceModel.CommunicationException' occurred in System.ServiceModel.dll

我是否需要关注这些?

1 个答案:

答案 0 :(得分:2)

根据this SO post

  

第一次机会异常不是错误。这些通常是例外   哪个会被抓住。你应该忽略它们。

以下是how to disable these exceptions的参考资料。

相关问题