Deciphering the .NET clr20r3 exception parameters P1..P10(解密 .NET clr20r3 异常参数 P1..P10)
问题描述
我正在尝试解读与 clr20r3
关联的 P1...P10 参数的含义,该参数在我的应用程序遇到异常时写入事件日志.
I'm trying to decipher the meaning on the P1...P10 parameters associated with a clr20r3
that is written to the event log when my application experiences an exception.
我能够找到的最好的 是:
- P1:宿主进程(例如
w3wp.exe
) - P2:宿主进程版本(例如
6.0.3790.1830
) - P3:???(例如
42435be1
) - P4:引发异常的程序集(例如
mrtables.webservice
) - P5:汇编版本(例如
2.1.2.0
) - P6:???(例如
4682617f
) - P7:???(例如
129
) - P8:???(例如
50
) - P9:引发的异常类型(例如
system.argumentexception
) - P10:???(例如
NIL
)
- P1: the hosting process (e.g.
w3wp.exe
) - P2: the hosting process version (e.g.
6.0.3790.1830
) - P3: ??? (e.g.
42435be1
) - P4: the assembly from which the exception was raised (e.g.
mrtables.webservice
) - P5: the assembly version (e.g.
2.1.2.0
) - P6: ??? (e.g.
4682617f
) - P7: ??? (e.g.
129
) - P8: ??? (e.g.
50
) - P9: the exception type raised (e.g.
system.argumentexception
) - P10: ??? (e.g.
NIL
)
谷歌搜索 clr20r3 提供了数千个示例参数值,人们可以从中尝试得出一个模式.
Googling for clr20r3 provides thousands of sample parameter values, from which someone can try to derive a pattern.
但我希望获得有关参数含义的文档,而不是有根据的猜测.
But I'm hoping for documentation on the parameter meanings, as opposed to educated guesses.
虽然我希望获得规范文档,但我真的很高兴看到异常被抛出,在哪一行,并带有堆栈跟踪.
While I can hope for canonical documentation, really I'd be happy to see the exception being thrown, at what line, complete with a stack trace.
- 未处理的异常导致应用程序使用EventType clr20r3, P1 w3wp.exe"崩溃在日志中,但没有详细信息 (在遇到问题时寻求帮助,而我们正在寻求参数含义的规范解释)
推荐答案
这是关于 Watson Buckets 的信息
Here is the information on Watson Buckets
- Exe 文件名
- Exe 文件程序集版本号
- Exe 文件戳
- exe文件完整的程序集名称
- 错误的程序集版本
- 错误装配时间戳
- 错误组装方法def
- 故障方法 IL Offset 在故障方法中
- 异常类型
这里还有一个 MSDN 文章同上.
And also here is a MSDN article on the same.
示例:
Problem Signature 01: devenv.exe
Problem Signature 02: 11.0.50727.1
Problem Signature 03: 5011ecaa
Problem Signature 04: Microsoft.VisualStudio.SharePoint.Project
Problem Signature 05: 11.0.60226.0
Problem Signature 06: 512c2dba
Problem Signature 07: 18a8
Problem Signature 08: 1d
Problem Signature 09: System.NullReferenceException
这篇关于解密 .NET clr20r3 异常参数 P1..P10的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:解密 .NET clr20r3 异常参数 P1..P10
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01