Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / Update.cs / 1305376 / Update.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { // // Represents an update to a configuration section, either in its // declaration or its definition. // abstract internal class Update { private bool _moved; private bool _retrieved; private string _configKey; private string _updatedXml; internal Update(string configKey, bool moved, string updatedXml) { _configKey = configKey; _moved = moved; _updatedXml = updatedXml; } internal string ConfigKey { get {return _configKey;} } internal bool Moved { get {return _moved;} } internal string UpdatedXml { get {return _updatedXml;} } internal bool Retrieved { get {return _retrieved;} set {_retrieved = value;} } } } // 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
- ToolStripOverflow.cs
- SoapSchemaExporter.cs
- Identifier.cs
- IResourceProvider.cs
- PartialTrustHelpers.cs
- InnerItemCollectionView.cs
- XPathSelectionIterator.cs
- TextTreeTextBlock.cs
- ComplexType.cs
- AlphabeticalEnumConverter.cs
- ContentPosition.cs
- XamlToRtfParser.cs
- PropertyChangeTracker.cs
- InterleavedZipPartStream.cs
- Pair.cs
- DeviceSpecificChoice.cs
- RuntimeResourceSet.cs
- ParentQuery.cs
- WebControlsSection.cs
- _LocalDataStoreMgr.cs
- AppDomainCompilerProxy.cs
- EndOfStreamException.cs
- HttpListenerRequest.cs
- ConstructorNeedsTagAttribute.cs
- CodeNamespaceImportCollection.cs
- SiteMapNode.cs
- LoadMessageLogger.cs
- TextContainerChangeEventArgs.cs
- OdbcTransaction.cs
- Automation.cs
- ListenerElementsCollection.cs
- RotateTransform.cs
- PartitionResolver.cs
- WSAddressing10ProblemHeaderQNameFault.cs
- Color.cs
- MdImport.cs
- EdmItemCollection.cs
- DecimalConverter.cs
- DesignColumnCollection.cs
- Size3D.cs
- MorphHelper.cs
- Queue.cs
- BoundsDrawingContextWalker.cs
- ProcessMessagesAsyncResult.cs
- KoreanLunisolarCalendar.cs
- DocumentViewerBase.cs
- DefaultCompensation.cs
- DictionarySectionHandler.cs
- SqlGenericUtil.cs
- DataGridItem.cs
- Size.cs
- oledbconnectionstring.cs
- VisualBasicSettingsHandler.cs
- StatusStrip.cs
- _KerberosClient.cs
- SecurityUtils.cs
- CompilationRelaxations.cs
- CustomErrorsSection.cs
- WebConfigurationHostFileChange.cs
- SqlConnectionManager.cs
- SendActivityDesignerTheme.cs
- SafeHandles.cs
- PrefixHandle.cs
- AppSettingsSection.cs
- PerformanceCounterScope.cs
- IndividualDeviceConfig.cs
- RightsManagementPermission.cs
- Base64Decoder.cs
- ResourceDescriptionAttribute.cs
- ICspAsymmetricAlgorithm.cs
- MsmqHostedTransportManager.cs
- TextEditorSelection.cs
- TextRangeEdit.cs
- DataFormats.cs
- QuaternionConverter.cs
- SpeechEvent.cs
- DisplayNameAttribute.cs
- ExpandoObject.cs
- ColumnMap.cs
- CodeEntryPointMethod.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- AsyncContentLoadedEventArgs.cs
- SwitchLevelAttribute.cs
- ToolboxComponentsCreatedEventArgs.cs
- ValidationEventArgs.cs
- SpeakCompletedEventArgs.cs
- WebServiceErrorEvent.cs
- FormatSelectingMessageInspector.cs
- XmlSchemaInfo.cs
- BitmapEffectInput.cs
- HtmlWindowCollection.cs
- DispatcherExceptionEventArgs.cs
- ControlPropertyNameConverter.cs
- TableProviderWrapper.cs
- StringArrayConverter.cs
- EpmTargetPathSegment.cs
- SecurityTimestamp.cs
- UrlMappingsModule.cs
- FixedSOMPage.cs
- DataPagerFieldItem.cs