_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.