1 type derived from ListenerElementsCollection
System (1)
compmod\system\diagnostics\ListenerElementsCollection.cs (1)
94internal class SharedListenerElementsCollection : ListenerElementsCollection {
2 instantiations of ListenerElementsCollection
System (2)
compmod\system\diagnostics\SourceElementsCollection.cs (1)
52private static readonly ConfigurationProperty _propListeners = new ConfigurationProperty("listeners", typeof(ListenerElementsCollection), new ListenerElementsCollection(), ConfigurationPropertyOptions.None);
compmod\system\diagnostics\TraceSection.cs (1)
12private static readonly ConfigurationProperty _propListeners = new ConfigurationProperty("listeners", typeof(ListenerElementsCollection), new ListenerElementsCollection(), ConfigurationPropertyOptions.None);
9 references to ListenerElementsCollection
System (9)
compmod\system\diagnostics\DiagnosticsConfiguration.cs (1)
140internal static ListenerElementsCollection SharedListeners {
compmod\system\diagnostics\SourceElementsCollection.cs (3)
52private static readonly ConfigurationProperty _propListeners = new ConfigurationProperty("listeners", typeof(ListenerElementsCollection), new ListenerElementsCollection(), ConfigurationPropertyOptions.None); 74public ListenerElementsCollection Listeners { 76return (ListenerElementsCollection) this[_propListeners];
compmod\system\diagnostics\SystemDiagnosticsSection.cs (2)
56public ListenerElementsCollection SharedListeners { 58return (ListenerElementsCollection) base[_propSharedListeners];
compmod\system\diagnostics\TraceSection.cs (3)
12private static readonly ConfigurationProperty _propListeners = new ConfigurationProperty("listeners", typeof(ListenerElementsCollection), new ListenerElementsCollection(), ConfigurationPropertyOptions.None); 40public ListenerElementsCollection Listeners { 42return (ListenerElementsCollection) this[_propListeners];