다음을 통해 공유


ConsoleTraceListener 생성자

정의

ConsoleTraceListener 클래스의 새 인스턴스를 초기화합니다.

오버로드

ConsoleTraceListener()

표준 출력 스트림에 쓴 추적 출력을 사용하여 ConsoleTraceListener 클래스의 새 인스턴스를 초기화합니다.

ConsoleTraceListener(Boolean)

추적 출력을 표준 출력 스트림이나 표준 오류 스트림에 쓰는 옵션을 사용하여 ConsoleTraceListener 클래스의 새 인스턴스를 초기화합니다.

ConsoleTraceListener()

Source:
ConsoleTraceListener.cs
Source:
ConsoleTraceListener.cs
Source:
ConsoleTraceListener.cs

표준 출력 스트림에 쓴 추적 출력을 사용하여 ConsoleTraceListener 클래스의 새 인스턴스를 초기화합니다.

public:
 ConsoleTraceListener();
public ConsoleTraceListener ();
Public Sub New ()

예제

다음 코드 예제에서는 지정한 Console 출력 스트림에 대 한 ConsoleTraceListener 개체를 초기화 하 고 추적 수신기 컬렉션에 추가 합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ConsoleTraceListener 클래스입니다.

// Define a trace listener to direct trace output from this method
// to the console.
ConsoleTraceListener consoleTracer;

// Check the command line arguments to determine which
// console stream should be used for trace output.
if ((CmdArgs.Length>0)&&(CmdArgs[0].ToString().ToLower().Equals("/stderr")))
    // Initialize the console trace listener to write
    // trace output to the standard error stream.
{
    consoleTracer = new ConsoleTraceListener(true);
}
else
{
    // Initialize the console trace listener to write
    // trace output to the standard output stream.
    consoleTracer = new ConsoleTraceListener();
}
// Set the name of the trace listener, which helps identify this
// particular instance within the trace listener collection.
consoleTracer.Name = "mainConsoleTracer";

// Write the initial trace message to the console trace listener.
consoleTracer.WriteLine(DateTime.Now.ToString()+" ["+consoleTracer.Name+"] - Starting output to trace listener.");

// Add the new console trace listener to
// the collection of trace listeners.
Trace.Listeners.Add(consoleTracer);
' Define a trace listener to direct trace output from this method
' to the console.
Dim consoleTracer As ConsoleTraceListener

' Check the command line arguments to determine which
' console stream should be used for trace output.
If (CmdArgs.Length > 0) AndAlso _
   (CmdArgs(0).ToLower.Equals("/stderr")) Then
    ' Initialize the console trace listener to write
    ' trace output to the standard error stream.
    consoleTracer = New ConsoleTraceListener(True)
Else
    ' Initialize the console trace listener to write
    ' trace output to the standard output stream.
    consoleTracer = New ConsoleTraceListener
End If
' Set the name of the trace listener, which helps identify this 
' particular instance within the trace listener collection.
consoleTracer.Name = "mainConsoleTracer"

' Write the initial trace message to the console trace listener.
consoleTracer.WriteLine(DateTime.Now.ToString() & " [" & _
     consoleTracer.Name & "] - Starting output to trace listener.")

' Add the new console trace listener to 
' the collection of trace listeners.
Trace.Listeners.Add(consoleTracer)

설명

이 생성자는 스트림에 ConsoleTraceListener 메시지를 쓰는 개체를 Console.Out 초기화합니다. 해당 Name 속성은 빈 문자열("")로 초기화됩니다.

추가 정보

적용 대상

ConsoleTraceListener(Boolean)

Source:
ConsoleTraceListener.cs
Source:
ConsoleTraceListener.cs
Source:
ConsoleTraceListener.cs

추적 출력을 표준 출력 스트림이나 표준 오류 스트림에 쓰는 옵션을 사용하여 ConsoleTraceListener 클래스의 새 인스턴스를 초기화합니다.

public:
 ConsoleTraceListener(bool useErrorStream);
public ConsoleTraceListener (bool useErrorStream);
new System.Diagnostics.ConsoleTraceListener : bool -> System.Diagnostics.ConsoleTraceListener
Public Sub New (useErrorStream As Boolean)

매개 변수

useErrorStream
Boolean

추적 및 디버깅 출력을 표준 오류 스트림에 쓰는 경우 true이고, 표준 출력 스트림에 쓰는 경우 false입니다.

예제

다음 코드 예제에서는 지정한 Console 출력 스트림에 대 한 ConsoleTraceListener 개체를 초기화 하 고 추적 수신기 컬렉션에 추가 합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ConsoleTraceListener 클래스입니다.

// Define a trace listener to direct trace output from this method
// to the console.
ConsoleTraceListener consoleTracer;

// Check the command line arguments to determine which
// console stream should be used for trace output.
if ((CmdArgs.Length>0)&&(CmdArgs[0].ToString().ToLower().Equals("/stderr")))
    // Initialize the console trace listener to write
    // trace output to the standard error stream.
{
    consoleTracer = new ConsoleTraceListener(true);
}
else
{
    // Initialize the console trace listener to write
    // trace output to the standard output stream.
    consoleTracer = new ConsoleTraceListener();
}
// Set the name of the trace listener, which helps identify this
// particular instance within the trace listener collection.
consoleTracer.Name = "mainConsoleTracer";

// Write the initial trace message to the console trace listener.
consoleTracer.WriteLine(DateTime.Now.ToString()+" ["+consoleTracer.Name+"] - Starting output to trace listener.");

// Add the new console trace listener to
// the collection of trace listeners.
Trace.Listeners.Add(consoleTracer);
' Define a trace listener to direct trace output from this method
' to the console.
Dim consoleTracer As ConsoleTraceListener

' Check the command line arguments to determine which
' console stream should be used for trace output.
If (CmdArgs.Length > 0) AndAlso _
   (CmdArgs(0).ToLower.Equals("/stderr")) Then
    ' Initialize the console trace listener to write
    ' trace output to the standard error stream.
    consoleTracer = New ConsoleTraceListener(True)
Else
    ' Initialize the console trace listener to write
    ' trace output to the standard output stream.
    consoleTracer = New ConsoleTraceListener
End If
' Set the name of the trace listener, which helps identify this 
' particular instance within the trace listener collection.
consoleTracer.Name = "mainConsoleTracer"

' Write the initial trace message to the console trace listener.
consoleTracer.WriteLine(DateTime.Now.ToString() & " [" & _
     consoleTracer.Name & "] - Starting output to trace listener.")

' Add the new console trace listener to 
' the collection of trace listeners.
Trace.Listeners.Add(consoleTracer)

설명

이 생성자는 또는 스트림에 ConsoleTraceListener 메시지를 쓰는 개체를 Console.OutConsole.Error 초기화합니다. 해당 Name 속성은 빈 문자열("")로 초기화됩니다.

추가 정보

적용 대상