다음을 통해 공유


WebThreadInformation.StackTrace 속성

정의

현재 스레드 관리 스택 추적을 가져옵니다.

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

속성 값

String

스레드 관리 스택 추적입니다.

예제

다음 코드 예제에는 스레드 스택 추적을 가져오는 방법을 보여 줍니다.

// Get the stack trace.
public string GetThreadStackTrace()
{
    return (string.Format(
        "Stack trace: {0}",
        ThreadInformation.StackTrace));
}
' Get the stack trace.
Public Function GetThreadStackTrace() As String
     Return String.Format( _
     "Stack trace: {0}", _
     ThreadInformation.StackTrace)
End Function 'GetThreadStackTrace

적용 대상