Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Diagnostics / SystemDiagnosticsSection.cs / 1305376 / SystemDiagnosticsSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Configuration; namespace System.Diagnostics { internal class SystemDiagnosticsSection : ConfigurationSection { private static readonly ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propAssert = new ConfigurationProperty("assert", typeof(AssertSection), new AssertSection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPerfCounters = new ConfigurationProperty("performanceCounters", typeof(PerfCounterSection), new PerfCounterSection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSources = new ConfigurationProperty("sources", typeof(SourceElementsCollection), new SourceElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSharedListeners = new ConfigurationProperty("sharedListeners", typeof(SharedListenerElementsCollection), new SharedListenerElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSwitches = new ConfigurationProperty("switches", typeof(SwitchElementsCollection), new SwitchElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propTrace = new ConfigurationProperty("trace", typeof(TraceSection), new TraceSection(), ConfigurationPropertyOptions.None); static SystemDiagnosticsSection() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propAssert); _properties.Add(_propPerfCounters); _properties.Add(_propSources); _properties.Add(_propSharedListeners); _properties.Add(_propSwitches); _properties.Add(_propTrace); } [ConfigurationProperty("assert")] public AssertSection Assert { get { return (AssertSection) base[_propAssert]; } } [ConfigurationProperty("performanceCounters")] public PerfCounterSection PerfCounters { get { return (PerfCounterSection) base[_propPerfCounters]; } } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("sources")] public SourceElementsCollection Sources { get { return (SourceElementsCollection ) base[_propSources]; } } [ConfigurationProperty("sharedListeners")] public ListenerElementsCollection SharedListeners { get { return (ListenerElementsCollection) base[_propSharedListeners]; } } [ConfigurationProperty("switches")] public SwitchElementsCollection Switches { get { return (SwitchElementsCollection) base[_propSwitches]; } } [ConfigurationProperty("trace")] public TraceSection Trace { get { return (TraceSection) base[_propTrace]; } } protected override void InitializeDefault() { Trace.Listeners.InitializeDefaultInternal(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Configuration; namespace System.Diagnostics { internal class SystemDiagnosticsSection : ConfigurationSection { private static readonly ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propAssert = new ConfigurationProperty("assert", typeof(AssertSection), new AssertSection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPerfCounters = new ConfigurationProperty("performanceCounters", typeof(PerfCounterSection), new PerfCounterSection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSources = new ConfigurationProperty("sources", typeof(SourceElementsCollection), new SourceElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSharedListeners = new ConfigurationProperty("sharedListeners", typeof(SharedListenerElementsCollection), new SharedListenerElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propSwitches = new ConfigurationProperty("switches", typeof(SwitchElementsCollection), new SwitchElementsCollection(), ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propTrace = new ConfigurationProperty("trace", typeof(TraceSection), new TraceSection(), ConfigurationPropertyOptions.None); static SystemDiagnosticsSection() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propAssert); _properties.Add(_propPerfCounters); _properties.Add(_propSources); _properties.Add(_propSharedListeners); _properties.Add(_propSwitches); _properties.Add(_propTrace); } [ConfigurationProperty("assert")] public AssertSection Assert { get { return (AssertSection) base[_propAssert]; } } [ConfigurationProperty("performanceCounters")] public PerfCounterSection PerfCounters { get { return (PerfCounterSection) base[_propPerfCounters]; } } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("sources")] public SourceElementsCollection Sources { get { return (SourceElementsCollection ) base[_propSources]; } } [ConfigurationProperty("sharedListeners")] public ListenerElementsCollection SharedListeners { get { return (ListenerElementsCollection) base[_propSharedListeners]; } } [ConfigurationProperty("switches")] public SwitchElementsCollection Switches { get { return (SwitchElementsCollection) base[_propSwitches]; } } [ConfigurationProperty("trace")] public TraceSection Trace { get { return (TraceSection) base[_propTrace]; } } protected override void InitializeDefault() { Trace.Listeners.InitializeDefaultInternal(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeDirectoryCompiler.cs
- RuntimeResourceSet.cs
- SafeLibraryHandle.cs
- OdbcConnection.cs
- PathData.cs
- CommunicationObjectManager.cs
- ExitEventArgs.cs
- PropertyPathWorker.cs
- ActivityXRefConverter.cs
- AccessDataSourceView.cs
- AspCompat.cs
- SourceFilter.cs
- WindowsStatic.cs
- ListenerAdaptersInstallComponent.cs
- BigInt.cs
- XmlNode.cs
- DataGridViewColumn.cs
- SqlMetaData.cs
- AggregateNode.cs
- EmptyCollection.cs
- ListControlBuilder.cs
- PhysicalOps.cs
- ServiceAppDomainAssociationProvider.cs
- ParameterCollectionEditorForm.cs
- TransactionTable.cs
- ObjectSecurity.cs
- CurrentChangedEventManager.cs
- ToolStripPanel.cs
- DrawingImage.cs
- ButtonChrome.cs
- ClientTargetSection.cs
- ObjectManager.cs
- LinqDataSourceContextData.cs
- CapabilitiesState.cs
- Typography.cs
- MinMaxParagraphWidth.cs
- StringOutput.cs
- ObjectAssociationEndMapping.cs
- TracingConnectionListener.cs
- TagNameToTypeMapper.cs
- COM2ICategorizePropertiesHandler.cs
- ControlDesignerState.cs
- ConnectionStringEditor.cs
- SetStoryboardSpeedRatio.cs
- SystemWebCachingSectionGroup.cs
- CultureInfoConverter.cs
- HttpStreamMessageEncoderFactory.cs
- IconConverter.cs
- IntSecurity.cs
- LayoutTableCell.cs
- GenericFlowSwitchHelper.cs
- unitconverter.cs
- ISAPIWorkerRequest.cs
- SerialReceived.cs
- PeerNameRecordCollection.cs
- ObjectIDGenerator.cs
- CodeDomDecompiler.cs
- TransformConverter.cs
- Translator.cs
- DataGridTextBox.cs
- SelectionEditingBehavior.cs
- WebPartCollection.cs
- Image.cs
- TransportBindingElementImporter.cs
- LinqTreeNodeEvaluator.cs
- SelectionProcessor.cs
- DataGridTable.cs
- Freezable.cs
- RouteItem.cs
- StringArrayConverter.cs
- PartialCachingControl.cs
- PageRanges.cs
- Tokenizer.cs
- _NegoState.cs
- ButtonColumn.cs
- EntityTransaction.cs
- TableItemPatternIdentifiers.cs
- AppDomainProtocolHandler.cs
- nulltextcontainer.cs
- ManipulationPivot.cs
- SerTrace.cs
- FontFamily.cs
- CodeSubDirectoriesCollection.cs
- MultiDataTrigger.cs
- BaseTemplateCodeDomTreeGenerator.cs
- AssemblyFilter.cs
- updatecommandorderer.cs
- ObjRef.cs
- PenContext.cs
- WindowsGraphics2.cs
- BrushMappingModeValidation.cs
- EventLogLink.cs
- PerformanceCounterCategory.cs
- SqlErrorCollection.cs
- ListViewEditEventArgs.cs
- SharedUtils.cs
- ScopedKnownTypes.cs
- __ComObject.cs
- XmlCustomFormatter.cs
- TemplateKey.cs