Gets a string representation of the frames on the call stack at the time the current exception was thrown.
Namespace:
EasyAlgo.EAUploadAssembly: EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.0.0
Syntax
| C# |
|---|
public string StackTrace { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Property StackTrace As String |
Field Value
Type: System..::.StringA string that describes the contents of the call stack, with the most recent method call appearing first.
Remarks
The execution stack keeps track of all the methods that are in execution at a given instant. A trace of the method calls is called a stack trace. The stack trace listing provides a means to follow the call sequence to the line number in the method where the exception occurs.
