_Exception.StackTrace Property

Definition

Provides COM objects with version-independent access to the StackTrace property.

public:
 property System::String ^ StackTrace { System::String ^ get(); };
public string StackTrace { get; }
member this.StackTrace : string
Public ReadOnly Property StackTrace As String

Property Value

A string that describes the contents of the call stack, with the most recent method call appearing first.

Remarks

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The Exception.StackTrace property gets a string representation of the frames on the call stack at the time the current exception was thrown.

Applies to

See also