Is there a list of .NET Exception error codes 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.
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.
User contributions licensed under CC BY-SA 3.0