WebThreadInformation.StackTrace Proprietà

Definizione

Ottiene la traccia dello stack gestita dal thread corrente.

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

Valore della proprietà

Traccia dello stack gestita dal thread.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere l'analisi dello stack di thread.

// 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

Si applica a