Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Configuration / System / Configuration / ConfigDefinitionUpdates.cs / 1 / 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
- parserscommon.cs
- WorkflowLayouts.cs
- TableLayoutSettingsTypeConverter.cs
- BooleanAnimationUsingKeyFrames.cs
- DataGridViewSelectedColumnCollection.cs
- codemethodreferenceexpression.cs
- SchemaNamespaceManager.cs
- ReflectionUtil.cs
- DropDownList.cs
- ETagAttribute.cs
- WsatTransactionInfo.cs
- SamlEvidence.cs
- CustomCategoryAttribute.cs
- StrokeNode.cs
- Track.cs
- MetadataItemCollectionFactory.cs
- HashRepartitionEnumerator.cs
- UnhandledExceptionEventArgs.cs
- IgnoreSectionHandler.cs
- ListManagerBindingsCollection.cs
- Token.cs
- Binding.cs
- DataGridCell.cs
- XmlQueryOutput.cs
- FormsAuthenticationEventArgs.cs
- ListView.cs
- GradientStop.cs
- WorkflowViewService.cs
- EasingKeyFrames.cs
- CodeBinaryOperatorExpression.cs
- SmiConnection.cs
- DataList.cs
- HyperlinkAutomationPeer.cs
- Hash.cs
- Marshal.cs
- SafeRightsManagementQueryHandle.cs
- DialogResultConverter.cs
- ColumnWidthChangedEvent.cs
- LinqDataSourceDisposeEventArgs.cs
- SqlRowUpdatedEvent.cs
- ElementMarkupObject.cs
- ContainerVisual.cs
- Helper.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- While.cs
- SqlError.cs
- GlyphInfoList.cs
- ResourceProperty.cs
- GraphicsState.cs
- StringUtil.cs
- ComponentTray.cs
- ActivityTypeResolver.xaml.cs
- FileReader.cs
- CorrelationValidator.cs
- ProtocolElement.cs
- MethodCallTranslator.cs
- DistinctQueryOperator.cs
- FormView.cs
- MetadataConversionError.cs
- BitmapCodecInfo.cs
- securitymgrsite.cs
- Privilege.cs
- FileSystemWatcher.cs
- SQLGuidStorage.cs
- DataGridViewComboBoxCell.cs
- shaperfactoryquerycachekey.cs
- XmlValidatingReaderImpl.cs
- AppSecurityManager.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- TypeRefElement.cs
- UnmanagedBitmapWrapper.cs
- SafeMILHandleMemoryPressure.cs
- XmlNamespaceMapping.cs
- WSIdentityFaultException.cs
- MailBnfHelper.cs
- versioninfo.cs
- _HTTPDateParse.cs
- VisualStyleElement.cs
- SqlRecordBuffer.cs
- DescendentsWalker.cs
- AutoGeneratedField.cs
- ProfileSettingsCollection.cs
- ViewSimplifier.cs
- ProfileGroupSettings.cs
- MarkupCompilePass2.cs
- StateDesigner.Layouts.cs
- SiteMapProvider.cs
- MetadataFile.cs
- DataGridPagerStyle.cs
- SchemaImporterExtension.cs
- IdentityHolder.cs
- MouseGesture.cs
- CodeConditionStatement.cs
- HyperLinkDesigner.cs
- Tool.cs
- Literal.cs
- PreProcessor.cs
- HwndProxyElementProvider.cs
- SignatureHelper.cs
- HtmlTableRowCollection.cs