ConsoleTraceListener Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy ConsoleTraceListener.
Przeciążenia
ConsoleTraceListener() |
Inicjuje ConsoleTraceListener nowe wystąpienie klasy z danymi wyjściowymi śledzenia zapisanymi w standardowym strumieniu wyjściowym. |
ConsoleTraceListener(Boolean) |
Inicjuje ConsoleTraceListener nowe wystąpienie klasy z opcją zapisu danych wyjściowych śledzenia do standardowego strumienia wyjściowego lub standardowego strumienia błędów. |
ConsoleTraceListener()
- Źródło:
- ConsoleTraceListener.cs
- Źródło:
- ConsoleTraceListener.cs
- Źródło:
- ConsoleTraceListener.cs
Inicjuje ConsoleTraceListener nowe wystąpienie klasy z danymi wyjściowymi śledzenia zapisanymi w standardowym strumieniu wyjściowym.
public:
ConsoleTraceListener();
public ConsoleTraceListener ();
Public Sub New ()
Przykłady
Poniższy przykład kodu inicjuje ConsoleTraceListener obiekt dla określonego Console strumienia wyjściowego i dodaje go do kolekcji odbiornika śledzenia. Ten przykład kodu jest częścią większego przykładu udostępnionego ConsoleTraceListener dla klasy .
// 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)
Uwagi
Ten konstruktor inicjuje ConsoleTraceListener obiekt do zapisywania komunikatów w strumieniu Console.Out . Jej Name właściwość jest inicjowana do pustego ciągu ("").
Zobacz też
Dotyczy
ConsoleTraceListener(Boolean)
- Źródło:
- ConsoleTraceListener.cs
- Źródło:
- ConsoleTraceListener.cs
- Źródło:
- ConsoleTraceListener.cs
Inicjuje ConsoleTraceListener nowe wystąpienie klasy z opcją zapisu danych wyjściowych śledzenia do standardowego strumienia wyjściowego lub standardowego strumienia błędów.
public:
ConsoleTraceListener(bool useErrorStream);
public ConsoleTraceListener (bool useErrorStream);
new System.Diagnostics.ConsoleTraceListener : bool -> System.Diagnostics.ConsoleTraceListener
Public Sub New (useErrorStream As Boolean)
Parametry
- useErrorStream
- Boolean
true
zapisywanie danych wyjściowych śledzenia i debugowania do standardowego strumienia błędów; false
do zapisu danych wyjściowych śledzenia i debugowania do standardowego strumienia wyjściowego.
Przykłady
Poniższy przykład kodu inicjuje ConsoleTraceListener obiekt dla określonego Console strumienia wyjściowego i dodaje go do kolekcji odbiornika śledzenia. Ten przykład kodu jest częścią większego przykładu udostępnionego ConsoleTraceListener dla klasy .
// 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)
Uwagi
Ten konstruktor inicjuje ConsoleTraceListener obiekt do zapisywania komunikatów do strumienia Console.ErrorConsole.Out lub . Jej Name właściwość jest inicjowana do pustego ciągu ("").
Zobacz też
- TraceListener
- DefaultTraceListener
- EventLogTraceListener
- TextWriterTraceListener
- Console
- Debug
- Trace