views:

248

answers:

2

Hi,

A SocketException has a SocketErrorCode and NativeErrorCode. I would like to find a list where these codes (or the common onces) are listed so I can respond in proper fasion.

Does anybody know where to find such a list?

+1  A: 

MSDN? SocketError; or from the native ErrorCode, the MSDN page states: "For more information about socket error codes, see the Windows Sockets version 2 API error code documentation in MSDN.".

A few searches shows this here.

Marc Gravell
A: 

Yeah I wasn't paying attention... SocketError is an enumeration... Thanks for the reply though :-)

TimothyP