FileLogTraceListener Constructors

Definition

Initializes a new instance of the FileLogTraceListener class and sets the name.

Overloads

FileLogTraceListener()

Initializes a new instance of the FileLogTraceListener class with the default name.

FileLogTraceListener(String)

Initializes a new instance of the FileLogTraceListener class with the supplied name.

FileLogTraceListener()

Initializes a new instance of the FileLogTraceListener class with the default name.

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

Remarks

This method sets the instance name of the FileLogTraceListener class to FileLogTraceListener.

You can access the instance name through the Name property.

See also

Applies to

FileLogTraceListener(String)

Initializes a new instance of the FileLogTraceListener class with the supplied name.

public:
 FileLogTraceListener(System::String ^ name);
public FileLogTraceListener (string name);
new Microsoft.VisualBasic.Logging.FileLogTraceListener : string -> Microsoft.VisualBasic.Logging.FileLogTraceListener
Public Sub New (name As String)

Parameters

name
String

String. The name of the instance object.

Remarks

This method sets the instance name of the FileLogTraceListener class to name.

You can access the instance name through the Name property.

See also

Applies to