ConsoleTraceListener Oluşturucular

Tanım

ConsoleTraceListener sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

ConsoleTraceListener()

Standart çıkış akışına ConsoleTraceListener yazılan izleme çıkışıyla sınıfının yeni bir örneğini başlatır.

ConsoleTraceListener(Boolean)

Standart çıkış akışına veya standart hata akışına ConsoleTraceListener izleme çıkışı yazma seçeneğiyle sınıfının yeni bir örneğini başlatır.

ConsoleTraceListener()

Kaynak:
ConsoleTraceListener.cs
Kaynak:
ConsoleTraceListener.cs
Kaynak:
ConsoleTraceListener.cs

Standart çıkış akışına ConsoleTraceListener yazılan izleme çıkışıyla sınıfının yeni bir örneğini başlatır.

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

Örnekler

Aşağıdaki kod örneği, belirtilen Console çıkış akışı için bir ConsoleTraceListener nesnesi başlatır ve bunu izleme dinleyicisi koleksiyonuna ekler. Bu kod örneği, sınıfı için ConsoleTraceListener sağlanan daha büyük bir örneğin parçasıdır.

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

Açıklamalar

Bu oluşturucu akışa ileti Console.Out yazmak için bir ConsoleTraceListener nesne başlatır. Özelliği Name boş bir dizeye ("") başlatılır.

Ayrıca bkz.

Şunlara uygulanır

ConsoleTraceListener(Boolean)

Kaynak:
ConsoleTraceListener.cs
Kaynak:
ConsoleTraceListener.cs
Kaynak:
ConsoleTraceListener.cs

Standart çıkış akışına veya standart hata akışına ConsoleTraceListener izleme çıkışı yazma seçeneğiyle sınıfının yeni bir örneğini başlatır.

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

Parametreler

useErrorStream
Boolean

true standart hata akışına izleme ve hata ayıklama çıkışı yazmak için; false standart çıkış akışına izleme ve hata ayıklama çıkışı yazmak için.

Örnekler

Aşağıdaki kod örneği, belirtilen Console çıkış akışı için bir ConsoleTraceListener nesnesi başlatır ve bunu izleme dinleyicisi koleksiyonuna ekler. Bu kod örneği, sınıfı için ConsoleTraceListener sağlanan daha büyük bir örneğin parçasıdır.

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

Açıklamalar

Bu oluşturucu, veya Console.Error akışına ileti yazmak için Console.Out bir ConsoleTraceListener nesnesi başlatır. Özelliği Name boş bir dizeye ("") başlatılır.

Ayrıca bkz.

Şunlara uygulanır