我有这种从 Silverlight 客户端记录错误的方法:
[MethodImpl(MethodImplOptions.NoInlining)]
public static bool ErrorHandler(Exception error, bool showError = true)
{
string callingMethod = new StackFrame(1).GetMethod().Name;
//write log - call webservice
//show error that some error happened if showError is true
}
我的问题是,当我运行应用程序并调用一个引发异常的方法时,它会记录如下:
<ThrowExceptionMethod>b__72: test
但是当具有正常(非开发人员运行时)的人运行此应用程序并引发异常时,它会记录如下:
b__72: test
我只是猜测这是由于 SDK Silverlight 运行时所致。很难说,因为我的大多数同事都安装了 Silverlight SDK...有人可以确认这是否是导致此异常的原因。
解决了!
这不是 SDK 运行时的原因,只是因为我调用了匿名方法。我在其中添加了这行代码:
var listStackFrame = new List<StackFrame>();
for (int i = 1; i < 20; i++)
{
listStackFrame.Add(new StackFrame(i));
}
string callingMethod = string.Empty; //new StackFrame(1).GetMethod().Name;
foreach (var item in listStackFrame
.Where(m => m != null && m.GetMethod() != null && !string.IsNullOrEmpty(m.GetMethod().Name) && m.GetMethod().Name.Contains("__")))
{
callingMethod += item.GetMethod().Name + "->";
}
我不担心这会占用多少资源,因为毕竟发生了异常,用户将停止他正在做的任何事情并联系支持。