Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Removes a listener from the Listeners collection.
<configuration>
   <system.diagnostics>
      <trace>
         <listeners>
            <remove>
<remove name="listener name" />
Required Attributes
| Attribute | Description | 
|---|---|
| name | The name of the listener to remove from the Listeners collection. | 
Example
The following example shows how to remove the default trace listener from the trace Listeners collection.
<configuration>
   <system.diagnostics>
      <trace autoflush="true" indentsize="0">
         <listeners>
            <remove name="Default" />
         </listeners>
      </trace>
   </system.diagnostics>
</configuration>
Configuration File
This element can be used in the machine configuration file (Machine.config) and the application configuration file.
See Also
Trace and Debug Settings Schema | TraceListener Class | DefaultTraceListener Class | TextWriterTraceListener Class | EventLogTraceListener Class