Tagged Questions
36
votes
9answers
8k 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 ...
26
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 ...
21
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();
...
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 ...
9
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?
8
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
326 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
2answers
176 views
What are those + signs at the end of each stack trace line?
I was wondering: When looking at an ASP.NET error page with a stack trace you can see a + sign and a number at the end of each line.
For example:
Also in the trace pasted in this question:
...
5
votes
3answers
212 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
1answer
1k views
How to get the Stack trace when logging exceptions with NLog?
When I use the default layout with NLog it only prints the name of the exception.
I've been told that the log4jxmlevent layout doesn't prints nothing about the exception.
What layout will help me?
...
5
votes
2answers
627 views
How can I get complete stack traces for mixed-mode minidumps when (WPF) native images are involved?
I have a mixed-mode C++/CLI application which uses WPF. Crashes from our customers are reported as minidumps to our own server.
When I try to investigate a minidump using the !pe or !clrstack ...
5
votes
5answers
377 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
2answers
1k views
Why do I get no line numbers from a stack trace created from Exceptions?
Okay; assuming this code running in debug mode -
static StackFrame GetTopFrameWithLineNumber(Exception e)
{
StackTrace trace = new StackTrace(e);
foreach (StackFrame frame in ...
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
132 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
84 views
Prevent method from showing up in Stack Traces
Using the .NET CLR, is there a way to prevent a certain method to show up in the stack trace? Especially I just want to remove the last call from the stack trace before throwing an exception.
I'm ...
3
votes
1answer
87 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
3answers
151 views
What is the difference between Call Stack and Stack Trace?
What is the difference between the terms "Call Stack" and "Stack Trace" ?
3
votes
3answers
135 views
Slimming Down Exception/Environment.StackTrace Meaningfully
I am analyzing errors in a legacy application as I clean it up and improve it. I have some stack traces being logged to the database, but there is a limit (VARCHAR2(1000)) to how much it is storing, ...
3
votes
2answers
252 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
388 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
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
3answers
211 views
How to get a stack trace in .NET in normal execution?
In VB .NET, I know I can get a stack trace by looking at the value of ex.StackTrace when handling an exception. How can I get the functions on the stack when I am not handling an exception? I am ...
3
votes
2answers
374 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
1answer
784 views
How to print stack trace of StackOverflowException
I am developing a .Net 2.0 application in which a StackOverflowException occurs. Is there a way to print/log the stack trace before/during the application aborts?
This is a long running server-side ...
3
votes
1answer
280 views
How do I make a thread dump with MONO?
How can I show the threads (stacktraces) in a hanging application that run with MONO?
I know that I can do it in .NET with the Managed Stack Explorer (MSE). Because the application hang only with ...
3
votes
2answers
582 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
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
5answers
766 views
Should I Print the Exception Stack Trace?
How inefficient is it to get the stack trace for an exception? I know it's costly, but how costly? Should they definitely not be used in production environment?
2
votes
1answer
52 views
Calling New StackTrace blocks when closing application
I just did some analysis by using a global function which is called GetCallingMethod in my case.
Mostly it works great. But some cases the application is blocked. It is blocked when closing the ...
2
votes
5answers
114 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
1answer
168 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
1answer
115 views
What are the numbers in a .NET stack trace on an ASPX error page?
What are the numbers in a .NET stack trace on an ASPX error page (see picture)? They don't seem to be line numbers as they are too large? How can those numbers help me in determining the line of code ...
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 ...
1
vote
2answers
127 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
119 views
Exception rethrown at [0]:
I'm investigating a stack trace, and I came accross this output:
Server stack trace:
...
at MyProject.Data.Notifications.NotificationCache.InitialisedCache() in NotificationCache.cs: line 72
...
1
vote
1answer
243 views
How is this stack trace possible in .Net?
My problem is some code that is getting called in a reentrant way which is causing it to crash and trying to debug how it can possibly be called by 2 threads or reentrant with the same thread. I ...
1
vote
1answer
438 views
Debugging WP7 Crash
my first forray into Stack traces for WP7.
This is causing me particular trouble and is popping up from several users of my app. I need a bit of help deciphering this.
This is the stack track:
...
1
vote
2answers
101 views
C# StackTrace not including call to new operator
I come from C++ and I don't understand why in C# when I write :
class A {
public A(){ /*here I get the StackTrace */}
//......other code
void f(){ A a = new A();
}
When I inspect the ...
1
vote
2answers
677 views
how to print out line number during application run in VB.net
I would like to print out my debug message with line number in VB.net application.
I did like this,
Dim st As StackTrace
Dim sf As StackFramee
st = New StackTrace(New StackFrame(True))
sf = ...
1
vote
4answers
309 views
How to find caller assembly name in unmanaged c++ dll
I have an unmanaged c++ dll. I am calling external methods of this unmanaged dll from c# (.net 3.5)
I am looking for a way to find witch c# assembly is calling my unmanaged c++ dll (into my c++ dll) ...
1
vote
2answers
199 views
“line 0” in dotNET stack trace
Greetings!
Today got error report, where top of stack trace looked similar to:
System.NullReferenceException: blah-blah at MyApplication.MyType.SomeMethod(String arg) in MyType.cs:line 0
The ...
1
vote
3answers
240 views
How can we take minidump during exceptions
I am working on a sub project(.NET) which deals with exceptions. Below is my requirement
When an exception occurs, the exception assembly must capture
CPU information
Method which caused the issue ...
1
vote
2answers
470 views
Is stacktrace information available in .NET release mode build?
If I choose release mode to build a dll, is the stacktrace information still available?
If so, then what information is unavailable in release mode?
1
vote
1answer
131 views
Stack Trace in error in Webpage in ASP not in my code?
I'm new to web-development in ASP, and I'm experiencing a problem where I try to access a certain page through a link and I get an error, the first part says it's an exception, then tips on debugging ...
1
vote
3answers
94 views
Unique value in StackTrace?
Background:
I have written a generic logging library in .NET 3.5. Basically the developer needs to call the Begin() method at the beginning of their method and the End() method at the end of it. ...
1
vote
2answers
387 views
StackTrace from Exception on different thread?
There is a constructor on StackTrace that takes an exeption as an argument. All fine and well, but I noticed that all the other constructors say that it will get the StackTrace from the current ...
0
votes
3answers
71 views
ArgumentNullException was unhandled - Value cannot be null. Parameter name: first
I am currently using the DotSpatial library for .NET (GIS Library). I am getting an error within my AppManager class. The AppManager is a Component that manages the loading of extensions (including ...
0
votes
0answers
46 views
Line numbers do not appear in stack trace of exceptions thrown from COM+ Applications. Why?
The title basically summarizes it.
I have a COM+ Server Application implemented using VB.NET 2010, that was configured to gather data from its own .config file by using the procedure described in ...