Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / Diagnostics / SystemDiagnosticsSection.cs / 1 / 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
- AssemblyAssociatedContentFileAttribute.cs
- PerformanceCountersElement.cs
- UiaCoreApi.cs
- BamlLocalizer.cs
- WmpBitmapDecoder.cs
- Logging.cs
- XPathAncestorIterator.cs
- DesignerDataStoredProcedure.cs
- CriticalHandle.cs
- System.Data_BID.cs
- LayoutSettings.cs
- StickyNoteAnnotations.cs
- JoinElimination.cs
- SoapObjectInfo.cs
- LiteralSubsegment.cs
- DbTransaction.cs
- ByteAnimationBase.cs
- CallbackHandler.cs
- _WinHttpWebProxyDataBuilder.cs
- SoapClientMessage.cs
- designeractionbehavior.cs
- OrderByBuilder.cs
- MultiPageTextView.cs
- AjaxFrameworkAssemblyAttribute.cs
- DataListCommandEventArgs.cs
- TransactionFlowProperty.cs
- MembershipAdapter.cs
- FunctionNode.cs
- KeyFrames.cs
- AnnotationResourceCollection.cs
- ConnectionsZone.cs
- SessionEndingCancelEventArgs.cs
- Message.cs
- XPathNodePointer.cs
- InvokeMethod.cs
- AssemblySettingAttributes.cs
- TextRunTypographyProperties.cs
- ImpersonateTokenRef.cs
- CustomLineCap.cs
- BStrWrapper.cs
- CodeTypeOfExpression.cs
- ViewUtilities.cs
- BinaryObjectInfo.cs
- DynamicDataManager.cs
- DesignerUtility.cs
- AsyncResult.cs
- NumberFunctions.cs
- PointCollectionValueSerializer.cs
- WinEventTracker.cs
- SystemInfo.cs
- VirtualizingPanel.cs
- VisualTreeHelper.cs
- TokenizerHelper.cs
- Executor.cs
- QueryContext.cs
- XmlElementCollection.cs
- StreamResourceInfo.cs
- QilExpression.cs
- WindowsTitleBar.cs
- UserUseLicenseDictionaryLoader.cs
- SqlBooleanizer.cs
- XPathMessageFilterTable.cs
- StorageMappingFragment.cs
- GetParentChain.cs
- _NegoStream.cs
- Tag.cs
- CodeMemberEvent.cs
- EntityDataSourceDataSelectionPanel.designer.cs
- UserControlCodeDomTreeGenerator.cs
- IdentityManager.cs
- ComboBox.cs
- ReferencedCollectionType.cs
- ObjectMemberMapping.cs
- ReadOnlyHierarchicalDataSourceView.cs
- latinshape.cs
- KnownTypeHelper.cs
- AnnotationMap.cs
- XmlStreamNodeWriter.cs
- UdpTransportSettings.cs
- DelegateSerializationHolder.cs
- DictionaryItemsCollection.cs
- SecurityState.cs
- CompilerTypeWithParams.cs
- WebConfigurationManager.cs
- MobileCategoryAttribute.cs
- SerializationSectionGroup.cs
- WebPartConnection.cs
- SignatureResourcePool.cs
- TableCell.cs
- StoreAnnotationsMap.cs
- HostProtectionException.cs
- VolatileEnlistmentMultiplexing.cs
- DelegatingHeader.cs
- AuthenticationModuleElement.cs
- VirtualStackFrame.cs
- BamlCollectionHolder.cs
- Selection.cs
- TypeGeneratedEventArgs.cs
- DisableDpiAwarenessAttribute.cs
- OleCmdHelper.cs