StackTrace Klasa

Definicja

Reprezentuje ślad stosu, który jest uporządkowanym zbiorem jednej lub większej liczby ramek stosu.

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
Dziedziczenie
StackTrace
Atrybuty

Przykłady

Poniższa aplikacja konsolowa pokazuje, jak utworzyć prostą StackTrace i iterować za pomocą ramek w celu uzyskania informacji debugowania i diagnostyki.

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
'

Uwagi

StackTrace informacje będą najbardziej informacyjne w przypadku konfiguracji kompilacji debugowania. Domyślnie kompilacje debugowania zawierają symbole debugowania, a kompilacje wydania nie. Symbole debugowania zawierają większość informacji o pliku, nazwie metody, numerze wiersza i kolumnie używanych w konstruowaniu StackFrame i StackTrace obiektach.

StackTrace może nie zgłaszać tak wielu wywołań metod, jak oczekiwano, ze względu na przekształcenia kodu, które występują podczas optymalizacji.

Konstruktory

Nazwa Opis
StackTrace()

Inicjuje StackTrace nowe wystąpienie klasy z ramki obiektu wywołującego.

StackTrace(Boolean)

Inicjuje nowe wystąpienie StackTrace klasy z ramki obiektu wywołującego, opcjonalnie przechwytując informacje źródłowe.

StackTrace(Exception, Boolean)

Inicjuje nowe wystąpienie klasy przy użyciu podanego obiektu wyjątku StackTrace i opcjonalnie przechwytuje informacje źródłowe.

StackTrace(Exception, Int32, Boolean)

Inicjuje nowe wystąpienie StackTrace klasy przy użyciu podanego obiektu wyjątku, pomijając określoną liczbę ramek i opcjonalnie przechwytując informacje źródłowe.

StackTrace(Exception, Int32)

Inicjuje nowe wystąpienie StackTrace klasy przy użyciu podanego obiektu wyjątku i pomija określoną liczbę ramek.

StackTrace(Exception)

Inicjuje nowe wystąpienie StackTrace klasy przy użyciu podanego obiektu wyjątku.

StackTrace(Int32, Boolean)

Inicjuje nowe wystąpienie StackTrace klasy z ramki obiektu wywołującego, pomijając określoną liczbę ramek i opcjonalnie przechwytując informacje źródłowe.

StackTrace(Int32)

Inicjuje nowe wystąpienie StackTrace klasy z ramki obiektu wywołującego, pomijając określoną liczbę ramek.

StackTrace(StackFrame)

Inicjuje StackTrace nowe wystąpienie klasy zawierającej jedną ramkę.

StackTrace(Thread, Boolean)
Przestarzałe.

Inicjuje nowe wystąpienie StackTrace klasy dla określonego wątku, opcjonalnie przechwytując informacje źródłowe.

Nie używaj tego przeciążenia konstruktora.

Pola

Nazwa Opis
METHODS_TO_SKIP

Definiuje wartość domyślną dla liczby metod pomijania ze śledzenia stosu. To pole jest stałe.

Właściwości

Nazwa Opis
FrameCount

Pobiera liczbę ramek w śladzie stosu.

Metody

Nazwa Opis
Equals(Object)

Określa, czy dany obiekt jest taki sam, jak bieżący obiekt.

(Odziedziczone po Object)
GetFrame(Int32)

Pobiera określoną ramkę stosu.

GetFrames()

Zwraca kopię wszystkich ramek stosu w bieżącym śladzie stosu.

GetHashCode()

Służy jako domyślna funkcja skrótu.

(Odziedziczone po Object)
GetType()

Pobiera Type bieżącego wystąpienia.

(Odziedziczone po Object)
MemberwiseClone()

Tworzy płytkią kopię bieżącego Object.

(Odziedziczone po Object)
ToString()

Tworzy czytelną reprezentację śledzenia stosu.

Dotyczy

Zobacz też