Bagikan melalui


ConsoleTraceListener Konstruktor

Definisi

Menginisialisasi instans baru kelas ConsoleTraceListener.

Overload

ConsoleTraceListener()

Menginisialisasi instans ConsoleTraceListener baru kelas dengan output jejak yang ditulis ke aliran output standar.

ConsoleTraceListener(Boolean)

Menginisialisasi instans ConsoleTraceListener baru kelas dengan opsi untuk menulis output jejak ke aliran output standar atau aliran kesalahan standar.

ConsoleTraceListener()

Sumber:
ConsoleTraceListener.cs
Sumber:
ConsoleTraceListener.cs
Sumber:
ConsoleTraceListener.cs

Menginisialisasi instans ConsoleTraceListener baru kelas dengan output jejak yang ditulis ke aliran output standar.

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

Contoh

Contoh kode berikut menginisialisasi ConsoleTraceListener objek untuk aliran output yang ditentukan Console dan menambahkannya ke koleksi pendengar jejak. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk ConsoleTraceListener kelas .

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

Keterangan

Konstruktor ini menginisialisasi ConsoleTraceListener objek untuk menulis pesan ke Console.Out aliran. Propertinya Name diinisialisasi ke string kosong ("").

Lihat juga

Berlaku untuk

ConsoleTraceListener(Boolean)

Sumber:
ConsoleTraceListener.cs
Sumber:
ConsoleTraceListener.cs
Sumber:
ConsoleTraceListener.cs

Menginisialisasi instans ConsoleTraceListener baru kelas dengan opsi untuk menulis output jejak ke aliran output standar atau aliran kesalahan standar.

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

Parameter

useErrorStream
Boolean

true untuk menulis output pelacakan dan penelusuran kesalahan ke aliran kesalahan standar; false untuk menulis output pelacakan dan penelusuran kesalahan ke aliran output standar.

Contoh

Contoh kode berikut menginisialisasi ConsoleTraceListener objek untuk aliran output yang ditentukan Console dan menambahkannya ke koleksi pendengar jejak. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk ConsoleTraceListener kelas .

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

Keterangan

Konstruktor ini menginisialisasi ConsoleTraceListener objek untuk menulis pesan ke Console.Out atau Console.Error aliran. Propertinya Name diinisialisasi ke string kosong ("").

Lihat juga

Berlaku untuk