Exception Error Codes in .NET
Is there a list of .NET Exception error codes开发者_JS百科 around?
I get these error codes with a couple of HttpExceptions
,
0x80070040
0x800703E3
And require to know the difference between the two errors.
Those are not .NET Exception Error codes. They are Windows HRESULT codes.
- 0x80070040 is "The specified network name is no longer available."
- 0x800703E3 is "The I/O operation has been aborted because of either a thread exit or an application request."
You can find these by using Tools->Error Lookup in Visual Studio.
Here you go - these are in fact HRESULT
error codes, which HttpException
exposes.
精彩评论