windows 0x80020101 代表什么?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/7102989/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
What does 0x80020101 represent?
提问by dlanod
A simple question that I can't find an answer for in Microsoft's error lookup or easily using google: what does the HRESULT 0x80020101 represent?
一个简单的问题,我在 Microsoft 的错误查找中找不到答案,也无法轻松使用 google:HRESULT 0x80020101 代表什么?
回答by hari
http://support.microsoft.com/kb/247784
http://support.microsoft.com/kb/247784
The HRESULT 0x80020101 translates to SCRIPT_E_REPORTED. This error can be observed when a scripting component fails under MTS.
HRESULT 0x80020101 转换为 SCRIPT_E_REPORTED。当脚本组件在 MTS 下失败时,可以观察到此错误。
回答by Teudimundo
According to Eric Lippert in this blog post:
根据Eric Lippert 在这篇博文中的说法:
SCRIPT_E_REPORTED
0x80020101
-- the script engines return this to the host when there has been an unhandled error that the host has already been informed about via OnScriptError.
SCRIPT_E_REPORTED
0x80020101
-- 当主机已通过 OnScriptError 获知未处理的错误时,脚本引擎将其返回给主机。