StackTrace Classe

Definizione

Rappresenta una traccia dello stack, ovvero una raccolta ordinata di uno o più stack frame.

public ref class StackTrace sealed
public ref class StackTrace
public sealed class StackTrace
[System.Serializable]
public class StackTrace
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public class StackTrace
public class StackTrace
type StackTrace = class
[<System.Serializable>]
type StackTrace = class
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type StackTrace = class
Public NotInheritable Class StackTrace
Public Class StackTrace
Ereditarietà
StackTrace
Attributi

Esempio

L'applicazione console seguente illustra come creare un oggetto semplice StackTrace e scorrere i frame per ottenere informazioni di debug e diagnostica.

using System;
using System.Diagnostics;

class StackTraceSample
{
    [STAThread]
    static void Main(string[] args)
    {
        StackTraceSample sample = new StackTraceSample();
        try
        {
            sample.MyPublicMethod();
        }
        catch (Exception)
        {
            // Create a StackTrace that captures
            // filename, line number, and column
            // information for the current thread.
            StackTrace st = new StackTrace(true);
            for(int i =0; i< st.FrameCount; i++ )
            {
                // Note that high up the call stack, there is only
                // one stack frame.
                StackFrame sf = st.GetFrame(i);
                Console.WriteLine();
                Console.WriteLine("High up the call stack, Method: {0}",
                    sf.GetMethod());

                Console.WriteLine("High up the call stack, Line Number: {0}",
                    sf.GetFileLineNumber());
            }
        }
    }

    public void MyPublicMethod ()
    {
        MyProtectedMethod();
    }

    protected void MyProtectedMethod ()
    {
        MyInternalClass mic = new MyInternalClass();
        mic.ThrowsException();
    }

    class MyInternalClass
    {
        public void ThrowsException()
        {
            try
            {
                throw new Exception("A problem was encountered.");
            }
            catch (Exception e)
            {
                // Create a StackTrace that captures filename,
                // line number and column information.
                StackTrace st = new StackTrace(true);
                string stackIndent = "";
                for(int i =0; i< st.FrameCount; i++ )
                {
                    // Note that at this level, there are four
                    // stack frames, one for each method invocation.
                    StackFrame sf = st.GetFrame(i);
                    Console.WriteLine();
                    Console.WriteLine(stackIndent + " Method: {0}",
                        sf.GetMethod() );
                    Console.WriteLine(  stackIndent + " File: {0}",
                        sf.GetFileName());
                    Console.WriteLine(  stackIndent + " Line Number: {0}",
                        sf.GetFileLineNumber());
                    stackIndent += "  ";
                }
                throw e;
            }
        }
    }
}

/*
This console application produces the following output when
compiled with the Debug configuration.

   Method: Void ThrowsException()
   File: c:\samples\stacktraceframe\myclass.cs
   Line Number: 59

     Method: Void MyProtectedMethod()
     File: c:\samples\stacktraceframe\myclass.cs
     Line Number: 45

       Method: Void MyPublicMethod()
       File: c:\samples\stacktraceframe\myclass.cs
       Line Number: 39

         Method: Void Main(System.String[])
         File: c:\samples\stacktraceframe\myclass.cs
         Line Number: 13

  High up the call stack, Method: Void Main(System.String[])
  High up the call stack, Line Number: 20


This console application produces the following output when
compiled with the Release configuration.

   Method: Void ThrowsException()
   File:
   Line Number: 0

     Method: Void Main(System.String[])
     File:
     Line Number: 0

  High up the call stack, Method: Void Main(System.String[])
  High up the call stack, Line Number: 0

*/
Imports System.Diagnostics

Class StackTraceSample
   
    <STAThread()>  _
    Public Shared Sub Main()

        Dim sample As New StackTraceSample()
        Try
   
            sample.MyPublicMethod()
        Catch
            ' Create a StackTrace that captures
            ' filename, line number, and column
            ' information for the current thread.
            Dim st As New StackTrace(True)
            Dim i As Integer

            For i = 0 To st.FrameCount - 1

                ' Note that high up the call stack, there is only
                ' one stack frame.
                Dim sf As StackFrame = st.GetFrame(i)
                Console.WriteLine()
                Console.WriteLine("High up the call stack, Method: {0}", _
                    sf.GetMethod())
            
                Console.WriteLine("High up the call stack, Line Number: {0}", _
                    sf.GetFileLineNumber())
            Next i
        End Try
    End Sub
   
   Public Sub MyPublicMethod()
      MyProtectedMethod()
   End Sub
    
   Protected Sub MyProtectedMethod()
      Dim mic As New MyInternalClass()
      mic.ThrowsException()
   End Sub
   
   
   Class MyInternalClass
      
      Public Sub ThrowsException()
         Try
            Throw New Exception("A problem was encountered.")
         Catch e As Exception

            ' Create a StackTrace that captures filename,
            ' line number and column information.
            Dim st As New StackTrace(True)

            Dim stackIndent As String = ""
            Dim i As Integer
            For i = 0 To st.FrameCount - 1
               ' Note that at this level, there are four
               ' stack frames, one for each method invocation.
               Dim sf As StackFrame = st.GetFrame(i)
               Console.WriteLine()
               Console.WriteLine(stackIndent + " Method: {0}", _
                   sf.GetMethod())
               Console.WriteLine(stackIndent + " File: {0}", _
                   sf.GetFileName())
               Console.WriteLine(stackIndent + " Line Number: {0}", _
                   sf.GetFileLineNumber())
               stackIndent += "  "
            Next i
            Throw e
         End Try
      End Sub
   End Class
End Class


' This console application produces the following output when
' compiled with the Debug configuration.
'   
'    Method: Void ThrowsException()
'    File: c:\pp\samples\stacktraceframe\myclass.vb
'    Line Number: 55
' 
'      Method: Void MyProtectedMethod()
'      File: c:\pp\samples\stacktraceframe\myclass.vb
'      Line Number: 42
' 
'        Method: Void MyPublicMethod()
'        File: c:\pp\samples\stacktraceframe\myclass.vb
'        Line Number: 37
' 
'          Method: Void Main(System.String[])
'          File: c:\pp\samples\stacktraceframe\myclass.vb
'          Line Number: 13
' 
'   High up the call stack, Method: Void Main(System.String[])
'   High up the call stack, Line Number: 18
' 
' 
' This console application produces the following output when
' compiled with the Release configuration.
' 
'    Method: Void ThrowsException()
'    File:
'    Line Number: 0
' 
'      Method: Void Main(System.String[])
'      File:
'      Line Number: 0
' 
'   High up the call stack, Method: Void Main()
'   High up the call stack, Line Number: 0
'

Commenti

StackTrace le informazioni saranno più informative con le configurazioni di compilazione di debug. Per impostazione predefinita, le compilazioni di debug includono simboli di debug, mentre le build di rilascio non lo fanno. I simboli di debug contengono la maggior parte dei file, il nome del metodo, il numero di riga e le informazioni sulle colonne usate per la costruzione di StackFrame oggetti e StackTrace .

StackTrace potrebbe non segnalare il numero di chiamate al metodo come previsto, a causa delle trasformazioni del codice che si verificano durante l'ottimizzazione.

Costruttori

Nome Descrizione
StackTrace()

Inizializza una nuova istanza della StackTrace classe dal frame del chiamante.

StackTrace(Boolean)

Inizializza una nuova istanza della StackTrace classe dal frame del chiamante, acquisendo facoltativamente le informazioni di origine.

StackTrace(Exception, Boolean)

Inizializza una nuova istanza della StackTrace classe utilizzando l'oggetto eccezione fornito e, facoltativamente, l'acquisizione delle informazioni sull'origine.

StackTrace(Exception, Int32, Boolean)

Inizializza una nuova istanza della StackTrace classe utilizzando l'oggetto eccezione fornito, ignorando il numero specificato di fotogrammi e acquisendo facoltativamente le informazioni di origine.

StackTrace(Exception, Int32)

Inizializza una nuova istanza della StackTrace classe utilizzando l'oggetto eccezione fornito e ignorando il numero specificato di fotogrammi.

StackTrace(Exception)

Inizializza una nuova istanza della StackTrace classe utilizzando l'oggetto eccezione fornito.

StackTrace(Int32, Boolean)

Inizializza una nuova istanza della StackTrace classe dal frame del chiamante, ignorando il numero specificato di fotogrammi e acquisendo facoltativamente le informazioni di origine.

StackTrace(Int32)

Inizializza una nuova istanza della StackTrace classe dal frame del chiamante, ignorando il numero specificato di fotogrammi.

StackTrace(StackFrame)

Inizializza una nuova istanza della StackTrace classe che contiene un singolo frame.

StackTrace(Thread, Boolean)
Obsoleti.

Inizializza una nuova istanza della StackTrace classe per un thread specifico, acquisendo facoltativamente le informazioni di origine.

Non usare questo overload del costruttore.

Campi

Nome Descrizione
METHODS_TO_SKIP

Definisce il valore predefinito per il numero di metodi da omettere dall'analisi dello stack. Questo campo è costante.

Proprietà

Nome Descrizione
FrameCount

Ottiene il numero di fotogrammi nell'analisi dello stack.

Metodi

Nome Descrizione
Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

(Ereditato da Object)
GetFrame(Int32)

Ottiene il frame dello stack specificato.

GetFrames()

Restituisce una copia di tutti i frame dello stack nell'analisi dello stack corrente.

GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene il Type dell'istanza corrente.

(Ereditato da Object)
MemberwiseClone()

Crea una copia superficiale del Objectcorrente.

(Ereditato da Object)
ToString()

Compila una rappresentazione leggibile dell'analisi dello stack.

Si applica a

Vedi anche