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
- InputScopeNameConverter.cs
- DependentList.cs
- RepeatBehavior.cs
- ComponentManagerBroker.cs
- RawStylusInputCustomData.cs
- ObjectPersistData.cs
- WebSysDisplayNameAttribute.cs
- IList.cs
- FileIOPermission.cs
- SqlError.cs
- ReachIDocumentPaginatorSerializer.cs
- DecoderReplacementFallback.cs
- SystemUdpStatistics.cs
- TrackingProfileCache.cs
- AnimatedTypeHelpers.cs
- Choices.cs
- TextPointerBase.cs
- SqlDataSource.cs
- ClientConvert.cs
- WorkflowDesigner.cs
- StrongNamePublicKeyBlob.cs
- PropertyDescriptorGridEntry.cs
- EditorBrowsableAttribute.cs
- EdmSchemaError.cs
- Expander.cs
- StatusBarItem.cs
- LocalizableResourceBuilder.cs
- SafeArchiveContext.cs
- ToolBar.cs
- ExtendedProperty.cs
- PerformanceCounterPermissionAttribute.cs
- MissingSatelliteAssemblyException.cs
- ProfileInfo.cs
- AutomationIdentifier.cs
- SystemException.cs
- FileController.cs
- ConfigurationStrings.cs
- XamlBrushSerializer.cs
- Transform.cs
- TransformerConfigurationWizardBase.cs
- designeractionlistschangedeventargs.cs
- FloaterParaClient.cs
- StringConverter.cs
- AsymmetricSignatureFormatter.cs
- BinHexEncoder.cs
- ToolStripButton.cs
- GenericTextProperties.cs
- GenericAuthenticationEventArgs.cs
- CompilationUnit.cs
- XmlSchemaInclude.cs
- UdpDuplexChannel.cs
- BlobPersonalizationState.cs
- BuildDependencySet.cs
- SchemaUtility.cs
- HtmlWindow.cs
- PathGeometry.cs
- Pen.cs
- XamlReaderConstants.cs
- ListDictionaryInternal.cs
- InternalRelationshipCollection.cs
- HttpListenerPrefixCollection.cs
- HtmlControl.cs
- ServiceHostFactory.cs
- KeyValueInternalCollection.cs
- COM2FontConverter.cs
- MultiByteCodec.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- WithParamAction.cs
- ByteAnimation.cs
- WebPartsPersonalization.cs
- PointUtil.cs
- BrushValueSerializer.cs
- WorkflowTransactionService.cs
- ListenDesigner.cs
- XmlSchemaFacet.cs
- UnlockInstanceAsyncResult.cs
- ParserStreamGeometryContext.cs
- EnumerableRowCollection.cs
- TraceLog.cs
- ZipIORawDataFileBlock.cs
- IInstanceContextProvider.cs
- WrappedIUnknown.cs
- PixelFormat.cs
- SqlXml.cs
- UnsafeNativeMethods.cs
- TextDpi.cs
- TextBox.cs
- ObsoleteAttribute.cs
- SqlFileStream.cs
- KerberosSecurityTokenAuthenticator.cs
- HwndSubclass.cs
- TextTreePropertyUndoUnit.cs
- CustomWebEventKey.cs
- TypeViewSchema.cs
- QueryResults.cs
- ModelChangedEventArgsImpl.cs
- TableNameAttribute.cs
- ApplicationContext.cs
- ConstraintManager.cs
- ValidatorUtils.cs