开发者

Exception Error Codes in .NET

开发者 https://www.devze.com 2023-02-28 18:08 出处:网络
Is there a list of .NET Exception error codes开发者_JS百科 around? I get these error codes with a couple of HttpExceptions,

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消