0

Every time I use a WCF Proxy client in VS 2010 I get at least 3 error messages:

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

Do I need to concern myself with these?

Darek
  • 4,687
  • 31
  • 47

1 Answers1

2

According to this SO post,

First chance exceptions are not errors. These are usually exceptions which will be caught. You should ignore them.

And here's a reference on how to disable these exceptions.

Community
  • 1
  • 1
StoriKnow
  • 5,738
  • 6
  • 37
  • 46
  • OK ... but only if you say so :), by the way, I love John Saunders comment "You've started to look at how sausage is made, and you're not liking it very much." So accurate. – Darek Jan 22 '13 at 18:09
  • Haha very accurate. Hope his post was able to guide you comfortably. – StoriKnow Jan 22 '13 at 18:14
  • Amusingly, this answer applies to dozens if not hundreds of questions on SO and elsewhere. However, due to the way SO is structured it ends up being rewritten over and over, since this is not obviously a duplicate so people don't like to mark it and its kin as such. Anyway, thanks for the answer @Sam – Max von Hippel Aug 03 '15 at 21:20