DefaultTraceListener Constructor

Definition

Initializes a new instance of the DefaultTraceListener class with "Default" as its Name property value.

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

Examples

The following code example removes the DefaultTraceListener provided by the application from the Trace.Listeners collection and then creates a new DefaultTraceListener and adds it to the Trace.Listeners collection.

// Remove the original default trace listener.
Trace.Listeners.RemoveAt(0);

// Create and add a new default trace listener.
DefaultTraceListener defaultListener;
defaultListener = new DefaultTraceListener();
Trace.Listeners.Add(defaultListener);

// Assign the log file specification from the command line, if entered.
if (args.Length>=2)
{
    defaultListener.LogFileName = args[1];
}
' Remove the original default trace listener.
Trace.Listeners.RemoveAt(0)

' Create and add a new default trace listener.
Dim defaultListener As DefaultTraceListener
defaultListener = New DefaultTraceListener
Trace.Listeners.Add(defaultListener)

' Assign the log file specification from the command line, if entered.
If args.Length >= 2 Then
    defaultListener.LogFileName = args(1)
End If

Applies to

See also