Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigDefinitionUpdates.cs / 1305376 / ConfigDefinitionUpdates.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; // // Contains all the updates to section definitions across all location sections. // internal class ConfigDefinitionUpdates { private ArrayList _locationUpdatesList; private bool _requireLocationWritten; internal ConfigDefinitionUpdates() { _locationUpdatesList = new ArrayList(); } // // Find the location update with a certain set of location attributes. // internal LocationUpdates FindLocationUpdates(OverrideModeSetting overrideMode, bool inheritInChildApps) { foreach (LocationUpdates locationUpdates in _locationUpdatesList) { if ( OverrideModeSetting.CanUseSameLocationTag(locationUpdates.OverrideMode, overrideMode) && locationUpdates.InheritInChildApps == inheritInChildApps) { return locationUpdates; } } return null; } // // Add a section definition update to the correct location update. // internal DefinitionUpdate AddUpdate(OverrideModeSetting overrideMode, bool inheritInChildApps, bool moved, string updatedXml, SectionRecord sectionRecord) { LocationUpdates locationUpdates = FindLocationUpdates(overrideMode, inheritInChildApps); if (locationUpdates == null) { locationUpdates = new LocationUpdates(overrideMode, inheritInChildApps); _locationUpdatesList.Add(locationUpdates); } DefinitionUpdate definitionUpdate = new DefinitionUpdate(sectionRecord.ConfigKey, moved, updatedXml, sectionRecord); locationUpdates.SectionUpdates.AddSection(definitionUpdate); return definitionUpdate; } // // Determine which section definition updates are new. // internal void CompleteUpdates() { foreach (LocationUpdates locationUpdates in _locationUpdatesList) { locationUpdates.CompleteUpdates(); } } internal ArrayList LocationUpdatesList { get {return _locationUpdatesList;} } internal bool RequireLocation { get { return _requireLocationWritten; } set { _requireLocationWritten = value; } } internal void FlagLocationWritten() { _requireLocationWritten = false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; // // Contains all the updates to section definitions across all location sections. // internal class ConfigDefinitionUpdates { private ArrayList _locationUpdatesList; private bool _requireLocationWritten; internal ConfigDefinitionUpdates() { _locationUpdatesList = new ArrayList(); } // // Find the location update with a certain set of location attributes. // internal LocationUpdates FindLocationUpdates(OverrideModeSetting overrideMode, bool inheritInChildApps) { foreach (LocationUpdates locationUpdates in _locationUpdatesList) { if ( OverrideModeSetting.CanUseSameLocationTag(locationUpdates.OverrideMode, overrideMode) && locationUpdates.InheritInChildApps == inheritInChildApps) { return locationUpdates; } } return null; } // // Add a section definition update to the correct location update. // internal DefinitionUpdate AddUpdate(OverrideModeSetting overrideMode, bool inheritInChildApps, bool moved, string updatedXml, SectionRecord sectionRecord) { LocationUpdates locationUpdates = FindLocationUpdates(overrideMode, inheritInChildApps); if (locationUpdates == null) { locationUpdates = new LocationUpdates(overrideMode, inheritInChildApps); _locationUpdatesList.Add(locationUpdates); } DefinitionUpdate definitionUpdate = new DefinitionUpdate(sectionRecord.ConfigKey, moved, updatedXml, sectionRecord); locationUpdates.SectionUpdates.AddSection(definitionUpdate); return definitionUpdate; } // // Determine which section definition updates are new. // internal void CompleteUpdates() { foreach (LocationUpdates locationUpdates in _locationUpdatesList) { locationUpdates.CompleteUpdates(); } } internal ArrayList LocationUpdatesList { get {return _locationUpdatesList;} } internal bool RequireLocation { get { return _requireLocationWritten; } set { _requireLocationWritten = value; } } internal void FlagLocationWritten() { _requireLocationWritten = false; } } } // 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
- InputLanguageProfileNotifySink.cs
- DataTableReaderListener.cs
- MatrixTransform.cs
- WindowsScrollBarBits.cs
- ListDesigner.cs
- TextBoxBase.cs
- EntityDataSourceConfigureObjectContext.cs
- NetworkCredential.cs
- RangeValuePatternIdentifiers.cs
- BlurBitmapEffect.cs
- Relationship.cs
- SimpleWebHandlerParser.cs
- FrameworkElementAutomationPeer.cs
- AnnotationAuthorChangedEventArgs.cs
- Label.cs
- UnionCqlBlock.cs
- EnumBuilder.cs
- Perspective.cs
- BaseHashHelper.cs
- XPathArrayIterator.cs
- Models.cs
- ListBox.cs
- ListChangedEventArgs.cs
- TabControlCancelEvent.cs
- CorrelationKey.cs
- BamlWriter.cs
- ConditionBrowserDialog.cs
- DropDownButton.cs
- ReverseInheritProperty.cs
- XmlEventCache.cs
- PropertyGrid.cs
- LinearKeyFrames.cs
- SafeSecurityHelper.cs
- StructuralType.cs
- PointKeyFrameCollection.cs
- DiscoveryClientDocuments.cs
- SmiEventSink_Default.cs
- CallSite.cs
- RequestNavigateEventArgs.cs
- WebColorConverter.cs
- TypeLibConverter.cs
- GuidelineCollection.cs
- RC2CryptoServiceProvider.cs
- IntegerValidatorAttribute.cs
- CodeDefaultValueExpression.cs
- DrawListViewColumnHeaderEventArgs.cs
- IntranetCredentialPolicy.cs
- DocumentSequenceHighlightLayer.cs
- RecognizedWordUnit.cs
- XmlValidatingReader.cs
- ServiceObjectContainer.cs
- BaseAsyncResult.cs
- EntityRecordInfo.cs
- ApplicationHost.cs
- DispatchChannelSink.cs
- BitmapCodecInfoInternal.cs
- TextBlock.cs
- CacheEntry.cs
- BezierSegment.cs
- MasterPageBuildProvider.cs
- WebPartConnectionCollection.cs
- TimeSpanStorage.cs
- HttpCacheVaryByContentEncodings.cs
- HtmlShimManager.cs
- ControlBuilderAttribute.cs
- SecurityUtils.cs
- CharStorage.cs
- ActivityBuilderHelper.cs
- TagNameToTypeMapper.cs
- XmlDocument.cs
- ListSurrogate.cs
- OracleInfoMessageEventArgs.cs
- ClientRuntimeConfig.cs
- UIPropertyMetadata.cs
- Pointer.cs
- SessionPageStateSection.cs
- FtpWebRequest.cs
- PersonalizationProviderHelper.cs
- CodeExporter.cs
- SQLInt64.cs
- SystemTcpStatistics.cs
- MultiBindingExpression.cs
- BitmapEffectInput.cs
- ApplicationTrust.cs
- DesignerTransactionCloseEvent.cs
- ExceptionUtil.cs
- DbQueryCommandTree.cs
- xsdvalidator.cs
- ExpandedWrapper.cs
- ObjectDataSourceStatusEventArgs.cs
- Column.cs
- DataGridToolTip.cs
- HiddenFieldDesigner.cs
- Interlocked.cs
- AlgoModule.cs
- RangeContentEnumerator.cs
- ProbeMatchesMessageCD1.cs
- FixUpCollection.cs
- XmlReaderSettings.cs
- ManualWorkflowSchedulerService.cs