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
- JsonSerializer.cs
- CompositeCollectionView.cs
- MeshGeometry3D.cs
- SchemaTableOptionalColumn.cs
- UnSafeCharBuffer.cs
- FolderLevelBuildProviderCollection.cs
- Normalization.cs
- TextTreePropertyUndoUnit.cs
- FileStream.cs
- OracleCommand.cs
- ProxyFragment.cs
- CaseInsensitiveHashCodeProvider.cs
- PersianCalendar.cs
- HeaderLabel.cs
- FocusChangedEventArgs.cs
- Decoder.cs
- HwndHost.cs
- ContentElement.cs
- TextRangeEdit.cs
- DrawingGroup.cs
- RegexFCD.cs
- QueryExpression.cs
- FontStyleConverter.cs
- KeyGestureValueSerializer.cs
- GeneralTransformCollection.cs
- ProcessModule.cs
- AspNetHostingPermission.cs
- VisualState.cs
- _NestedMultipleAsyncResult.cs
- CommentEmitter.cs
- SqlSelectStatement.cs
- ArgumentValidation.cs
- BaseComponentEditor.cs
- ExtendedPropertyDescriptor.cs
- AdPostCacheSubstitution.cs
- NetStream.cs
- ToolboxItemWrapper.cs
- GradientBrush.cs
- Line.cs
- BodyGlyph.cs
- SharedHttpsTransportManager.cs
- PointCollectionValueSerializer.cs
- ClientTargetCollection.cs
- CheckBox.cs
- State.cs
- ToolStripContentPanel.cs
- OperationCanceledException.cs
- StringPropertyBuilder.cs
- DeferredSelectedIndexReference.cs
- ConfigXmlElement.cs
- OrderedDictionary.cs
- EntityDataSourceConfigureObjectContext.cs
- AuthorizationRule.cs
- HttpAsyncResult.cs
- HatchBrush.cs
- OracleInfoMessageEventArgs.cs
- DBDataPermission.cs
- Utility.cs
- ModuleElement.cs
- CachedTypeface.cs
- NamespaceMapping.cs
- ChannelEndpointElementCollection.cs
- OracleBFile.cs
- SQLStringStorage.cs
- ScriptResourceInfo.cs
- ArgumentException.cs
- MultiDataTrigger.cs
- PolyBezierSegment.cs
- MessagePropertyVariants.cs
- SecurityTokenProvider.cs
- DrawingCollection.cs
- TableCellCollection.cs
- DesignerTransaction.cs
- Merger.cs
- WebPartConnectionsDisconnectVerb.cs
- Label.cs
- MemberCollection.cs
- CompilerScopeManager.cs
- ClipboardProcessor.cs
- ParseElementCollection.cs
- FileEnumerator.cs
- ResourceSetExpression.cs
- externdll.cs
- ObsoleteAttribute.cs
- DbMetaDataCollectionNames.cs
- NonParentingControl.cs
- EntityDataSourceState.cs
- DBDataPermissionAttribute.cs
- XPathNavigatorReader.cs
- StateMachineHistory.cs
- TimeoutException.cs
- MsmqIntegrationChannelListener.cs
- RemotingConfigParser.cs
- ApplicationSecurityInfo.cs
- DeferredElementTreeState.cs
- PageCatalogPart.cs
- ToolboxComponentsCreatingEventArgs.cs
- Thumb.cs
- DataGridCaption.cs
- BrushValueSerializer.cs