_Exception.StackTrace Свойство
Определение
Предоставляет COM-объекты с независящим от версии доступом к свойству StackTrace.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
Значение свойства
Строка, описывающая содержимое стека вызова, в которой первым отображается самый последний вызов метода.A string that describes the contents of the call stack, with the most recent method call appearing first.
Комментарии
Этот метод предназначен для доступа к управляемым классам из неуправляемого кода и не должен вызываться из управляемого кода.This method is for access to managed classes from unmanaged code and should not be called from managed code.
Exception.StackTraceСвойство получает строковое представление кадров в стеке вызовов на момент возникновения текущего исключения.The Exception.StackTrace property gets a string representation of the frames on the call stack at the time the current exception was thrown.