Tagged Questions
34
votes
9answers
7k views
How can I find the method that called the current method?
When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
24
votes
5answers
9k views
Display lines number in Stack Trace for .NET assembly in Release mode
Is there a way to display the lines in the stack trace for the .NET assembly build/deployed in Release mode?
UPDATE:
My application is divided into three class library projects and one ASP.NET ...
24
votes
5answers
18k views
Print stack trace information from C#
As part of some error handling in our product, we'd like to dump some stack trace information. However, we experience that many users will simply take a screenshot of the error message dialog instead ...
20
votes
3answers
3k views
How to print the current Stack Trace in .NET without any exception?
I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for debugging purpose. Example:
public void executeMethod()
{
logStackTrace();
...
15
votes
3answers
1k views
Can I get the stack traces of all threads in my c# app?
I'm debugging an apparent concurrency issue in a largish app that I hack on at work. The bug in question only manifests on certain lower-performance machines after running for many (12+) hours, and I ...
11
votes
10answers
556 views
incorrect stacktrace by rethrow
If rethrow an exception with "throw;" but the stacktrace is incorrect:
static void Main(string[] args) {
try {
try {
throw new Exception("Test"); //Line 12
}
catch (Exception ex) ...
11
votes
4answers
2k views
Recreate stack trace with line numbers from user bug-report in .net?
First, the problem:
I have several free projects, and as any software they contains bugs. Some fellow users when encounter bug send me a bug-reports with stack traces. In order to simplify finding ...
8
votes
7answers
5k views
C# equivalent to Java's Exception.printStackTrace()?
Is there a C# equivalent method to Java's Exception.printStackTrace() or do I have to write something myself, working my way through the InnerExceptions?
7
votes
7answers
2k views
How can I rethrow an Inner Exception while maintaining the stack trace generated so far?
Duplicate of: http://stackoverflow.com/questions/57383/in-c-how-can-i-rethrow-innerexception-without-losing-stack-trace
I have some operations that I invoke asynchronously on a background thread. ...
6
votes
3answers
296 views
what can lead throw to reset a callstack (I'm using “throw”, not “throw ex”)
I've always thought the difference between "throw" and "throw ex" was that throw alone wasn't resetting the stacktrace of the exception.
Unfortunately, that's not the behavior I'm experiencing ; here ...
6
votes
7answers
697 views
Attaching the .net debugger while still providing useful logging on death
I would like to have some kind of catch-all exceptions mechanism in the root of my code, so when an app terminates unexpectedly I can still provide some useful logging.
Something along the lines of
...
5
votes
3answers
197 views
Programmaticaly get C# Stack Trace [closed]
Possible Duplicate:
How to print the current Stack Trace in .NET without any exception?
When an exception is thrown, its text contains the stack trace. Can I somehow obtain the stack trace ...
5
votes
2answers
375 views
How to split a stacktrace line into namespace, class, method file and line number?
C# stack traces take the following form:
at Foo.Core.Test.FinalMethod(Doh doh) in C:\Projects\src\Core.Tests\Test.cs:line 21
at Foo.Core.Test.AnotherMethod(Bar bar)
at ...
5
votes
5answers
338 views
Just how slow is this? INotifyPropertyChanged using the StackTrace
Today, I came across an interesting method of implementing the INotifyPropertyChanged interface. Instead of passing a string name of the property changed, or a lambda expression, we can simply call ...
5
votes
3answers
3k views
Stacktrace information preserving paths of original source
I am using C#.net for application development.
To log and debug exceptions, I use the stacktrace.
I executed my application on another machine, but when errors occur it refers to the path of my ...
4
votes
2answers
126 views
Is it possible to get actual type from stack trace?
I'm writing an ExceptionFactory class, using System.Diagnostics.StackTrace.
var trace = new StackTrace(1, true);
var frames = trace.GetFrames();
var method = frames[0].GetMethod();
Now, for ...
4
votes
1answer
260 views
C#: how to hide a method from the stack trace?
I have a dead simple one-liner method that I don't want to see in the stack trace: is that possible? maybe mark it with an attribute?
Just to clarify, I'm not trying to print the trace, or rethrow, ...
3
votes
1answer
82 views
Weirdness with StackTrace and WCF classes
We have a C# logging class that uses System.Diagnostics.StackTrace and StackFrame to obtain information about the filename, linenumber, class, and method on which logger.writeLine() was called, which ...
3
votes
2answers
221 views
How do I get variable values in my stack trace dump?
I maintain an application that sends me an email when an error occurs in the application. I dump the stack trace into the email, and it seems to work ok. The only thing missing is the values of the ...
3
votes
1answer
361 views
exception call stack truncated without any re-throwing
I have an unusual case where I have a very simple Exception getting thrown and caught in the same method. It isn’t re-thrown (the usual kind of problem naïve programmers have). And yet its ...
3
votes
1answer
223 views
Is there a way to examine the Stack variables at runtime in c#?
I wonder if there is a way to dump the contents of the stack at runtime?
I am interested in both the parent functions information (name, parameters, line) which I know I can get with the StackTrace ...
3
votes
4answers
498 views
How to rethrow the inner exception of a TargetInvocationException without losing the stack trace
I have many methods which are calling using Delegate.DynamicInvoke. Some of these methods make database calls and I would like to have the ability to catch a SqlException and not catch the ...
3
votes
2answers
1k views
How to print full stack trace?
for example
//---------------a
try
{
// some network call
}
catch(WebException we)
{
throw new MyCustomException("some message ....", we);
}
In another ...
3
votes
3answers
613 views
Use C# attribute to track function call, variables, and return value?
In Python, I can use decorators to trace the function call, its variables and return values.
It is very easy to use.
I just wonder can C# do the same thing?
I find out there is a sample code of ...
3
votes
2answers
1k views
How to get line number(s) in the StackTrace of an exception thrown in .NET to show up
MSDN says this about the StackTrace property of the Exception class:
The StackTrace property holds a stack
trace, which you can use to determine
where in the code the error occurred.
...
3
votes
2answers
537 views
How to get stack trace of a running process from within a Visual Studio add-in?
I am writing a Visual Studio add-in in C# which will run while I am debugging a process in the same Visual Studio window and I need access to that the process' stack trace from within my add-in. I ...
3
votes
2answers
292 views
ASP.NET exception gives irrelevant stack trace on YSOD, very challenging!
Here is the YSOD:
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Description: An unhandled exception occurred during the execution ...
3
votes
2answers
347 views
Stack trace with incorrect line number
Why would a stack trace show "line 0", but only for one frame in the stack trace?
eg.
...
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at ...
3
votes
2answers
569 views
Get the method parameters from the throwing method in C#
I have a nasty exception that seems to occure deep inside the DataGridView Code.
I have a class that inherits from BindingList which is the DataSource of a BindingSource which is the DataSoure of a ...
3
votes
6answers
1k views
how to see stacktrace of.net application
I have a .net Windows application in the production that has no access to Visual Studio(standard edition), and the only thing they can install is the express edition, which does not have the ...
3
votes
2answers
293 views
Why are the names of generic types mangled in a .NET stack trace?
I have an exception being thrown from a C# method, that takes a generic list as a paremeter.
private static void DoWork(List<ClassName> a)
{
}
When it throws an exception, the stack trace ...
3
votes
4answers
3k views
How to throw exception without resetting stack trace?
This is a follow-up question to Is there a difference between “throw” and “throw ex”?
is there a way to extract a new error handling method without resetting the stack trace?
[EDIT]
I will be trying ...
3
votes
3answers
2k views
Need help deciphering a C# stack trace
I have an application that is locking on the GUI thread, and I've used WinDbg, along with the "!clrstack" command to get this stack trace, but I can't figure out where the issue is. All of these ...
3
votes
4answers
2k views
Any way to avoid Property inline optimization in C#?
So I have a PropertyBag class that is intended to implement INotifyPropertyChanged. In order to make this code work as cleanly as possible and to avoid user error, I am using the stack to get the ...
2
votes
1answer
63 views
Debugging C# production application with/without pdb file
I built an application that is handling an error and returning the following error msg:
System.NullReferenceException:
Object reference not set to an instance of an object.
at ...
2
votes
1answer
157 views
How to understand the conditions under which the error occurs (StackTrace wp7)?
How do I read the following stacktrace from the AppHub?
Frame Image Function Offset
0 coredll.dll ...
2
votes
5answers
106 views
If I throw an exception in a getter of a property, can I obtain the name of the property in a catch block?
If I throw an exception from a getter of a property, is it possible to obtain the name of
the property in the catch block where I have called that property -like using reflection or
reading the ...
2
votes
3answers
284 views
Get object call hierarchy
Lets say I have 3 classes:
class A {
void do_A() {
//Check object call hierarchy
}
}
class B {
void do_B() {
A a;
a.do_A();
}
}
class C {
void do_C() {
B b;
...
2
votes
3answers
109 views
Getting generic arguments from a class in the stack
I have a generic class called Repository. This class has a function that "calls itself" by initializing a new instance of the Repository class with a different generic argument. This "recursion" can ...
2
votes
2answers
137 views
Getting The Method That A Method Was Called From?
Is it possible to determine the calling method name "Eat Pizza" in PostError?
I guess I could pass "EatPizza" as one of the arguments, but that would require changes each time the method name changes ...
2
votes
1answer
164 views
Sensitive information in Stack Trace
I am wanting to discover what possible standard .net exceptions can cause stack traces to include sensitive information.
It is my understanding (correct me if I am wrong) that if a SQL connection ...
2
votes
2answers
367 views
How to obtain the native stacktrace from native exceptions caught in managed code
I have some managed code that calls to a method inside some native DLL(i have the appropriate symbol files).
Sometimes, that native method throws an exception which I catch in my managed code. ...
2
votes
4answers
794 views
IIS not giving line numbers in stack trace even though pdb present
Web config has debug=true and the project is a debug build and the pdb files are present in the bin directory, but I do not get line numbers in my stacktrace when an exception is thrown.
Works fine ...
2
votes
1answer
1k views
How to get parameter value from StackTrace
From within a method call I need to "jump" three layers up the stack and retrieve the type and value of the parameters passed to that method.
Getting the parameter type is easy but I couldn't find a ...
2
votes
3answers
121 views
Is it possible to extract some structured information from the Exception.StackTrace?
I was wondering if it's possible to convert the string StackTrace in the exception to a more structured data object?
Or is there a method that can get me this information while I am catching the ...
2
votes
1answer
351 views
StackTrace filename unknown
Something strange is happening in my code where I'm using a StackTrace. It's almost as if the debug info is not being loaded... but I'm running this on the DEBUG build.The .pdb files are definitelly ...
2
votes
5answers
1k views
Showing stack trace of exception that is re-thrown, rather than stack trace from throw point
I've confirmed this same behavior in VS2005, so I was wrong to call it a .NET (1.1) bug.
I'm leaving the original question below, but my revised question is this: how do I get Visual Studio to give ...
2
votes
2answers
953 views
How do I get the executing object for a stackframe?
When using reflection it is possible to obtain the call stack (apart from that it can be a crude approximation due to JIT optimizations) using System.Diagnostics.StackTrace and examine the StackFrame ...
1
vote
2answers
111 views
Is there a C# class for tracking service method calls like a stack trace
I know that there is of course a stack trace for keeping track of calls to methods within your program however it does not show a call to a method in a service as part of the trace. Is there any built ...
1
vote
1answer
22 views
Getting complete Stackframe in Sharepoint2010 project
I use the following code to get the StackFrame in case of an error:
System.Diagnostics.StackTrace stackTrace = new System.Diagnostics.StackTrace(true);
System.Diagnostics.StackFrame stackFrame = ...