TraceSource::Name Property
.NET Framework (current version)
Gets the name of the trace source.
Assembly: System (in System.dll)
The name is set by the name parameter passed to the constructor. You can refer to the trace source by using the name attribute in the configuration file.
The following XML element shows referring to a trace source in the configuration file.
<configuration>
<system.diagnostics>
<sources>
<source name="TraceTest">
</source>
</sources>
</system.diagnostics>
</configuration>
The following code sample shows how to name a trace source in the constructor call. This code example is part of a larger example provided for the TraceSource class.
.NET Framework
Available since 2.0
Available since 2.0
Show: