Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpListener.cs
- AudioStateChangedEventArgs.cs
- MediaContext.cs
- ImageConverter.cs
- RootBrowserWindowAutomationPeer.cs
- RoleManagerSection.cs
- DataServiceStreamProviderWrapper.cs
- Constants.cs
- TabPage.cs
- AnnotationService.cs
- CacheDict.cs
- ConfigXmlElement.cs
- EncoderBestFitFallback.cs
- SecurityRuntime.cs
- XamlTypeMapperSchemaContext.cs
- FieldValue.cs
- StylusLogic.cs
- ToolbarAUtomationPeer.cs
- RunWorkerCompletedEventArgs.cs
- NullToBooleanConverter.cs
- IdentityReference.cs
- TemplateBamlRecordReader.cs
- ExplicitDiscriminatorMap.cs
- QueryContext.cs
- MailWriter.cs
- DelayedRegex.cs
- BufferAllocator.cs
- CallSiteOps.cs
- XsltArgumentList.cs
- InvalidFilterCriteriaException.cs
- ADRoleFactory.cs
- embossbitmapeffect.cs
- XPathParser.cs
- WindowsFormsSynchronizationContext.cs
- XmlEntityReference.cs
- EntityProviderServices.cs
- Tile.cs
- SafeBitVector32.cs
- StrongNameUtility.cs
- SiteMap.cs
- OutputCacheSettingsSection.cs
- ClosureBinding.cs
- SizeFConverter.cs
- TextRenderer.cs
- SHA384Managed.cs
- AssemblyFilter.cs
- BaseTemplateBuildProvider.cs
- CookieParameter.cs
- CodeBinaryOperatorExpression.cs
- MultiDataTrigger.cs
- Policy.cs
- EntityModelSchemaGenerator.cs
- ErrorProvider.cs
- BitmapPalette.cs
- SelectionProviderWrapper.cs
- SecurityUniqueId.cs
- MimeImporter.cs
- ParameterCollection.cs
- HwndStylusInputProvider.cs
- isolationinterop.cs
- ProtectedConfigurationSection.cs
- HttpTransportSecurity.cs
- ControlEvent.cs
- BamlTreeMap.cs
- BehaviorEditorPart.cs
- TreeViewCancelEvent.cs
- Brushes.cs
- _IPv4Address.cs
- DbCommandTree.cs
- WindowsBrush.cs
- RuntimeConfig.cs
- WarningException.cs
- DataGridViewDataConnection.cs
- MimeWriter.cs
- FamilyMapCollection.cs
- SuppressMessageAttribute.cs
- Adorner.cs
- TextViewSelectionProcessor.cs
- SettingsSavedEventArgs.cs
- RoleManagerSection.cs
- Timer.cs
- Control.cs
- WindowsToolbar.cs
- DataGridViewCheckBoxColumn.cs
- ServiceParser.cs
- IconBitmapDecoder.cs
- PasswordDeriveBytes.cs
- LookupBindingPropertiesAttribute.cs
- BitmapPalettes.cs
- CmsUtils.cs
- StatusStrip.cs
- MimeObjectFactory.cs
- StylusButtonEventArgs.cs
- BooleanConverter.cs
- Buffer.cs
- FormViewModeEventArgs.cs
- VisualBasicImportReference.cs
- TransactionFlowAttribute.cs
- TableLayoutRowStyleCollection.cs
- PersonalizationDictionary.cs