Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / Update.cs / 1 / 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.
//------------------------------------------------------------------------------
//
// 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
- RtfToXamlReader.cs
- XmlUtilWriter.cs
- UDPClient.cs
- RawStylusInputReport.cs
- InProcStateClientManager.cs
- PrePostDescendentsWalker.cs
- ImageConverter.cs
- DataGridSortCommandEventArgs.cs
- Int64AnimationBase.cs
- ResourceDefaultValueAttribute.cs
- ACE.cs
- PtsHelper.cs
- PersonalizablePropertyEntry.cs
- SystemNetHelpers.cs
- Encoding.cs
- PresentationTraceSources.cs
- ArgumentException.cs
- VisualStyleTypesAndProperties.cs
- CommandHelpers.cs
- TriggerCollection.cs
- ConfigXmlElement.cs
- ResXBuildProvider.cs
- UserControlDocumentDesigner.cs
- LocationUpdates.cs
- XsdCachingReader.cs
- ReadOnlyHierarchicalDataSourceView.cs
- FrameworkContentElement.cs
- WMIInterop.cs
- MemoryRecordBuffer.cs
- MenuItem.cs
- XmlSchemaChoice.cs
- Viewport2DVisual3D.cs
- XmlNotation.cs
- SmtpReplyReader.cs
- LocalizableResourceBuilder.cs
- FreeIndexList.cs
- TreeNodeStyleCollectionEditor.cs
- MSAANativeProvider.cs
- TagPrefixAttribute.cs
- SHA1CryptoServiceProvider.cs
- EventListenerClientSide.cs
- ContractListAdapter.cs
- ValidationRuleCollection.cs
- PrintingPermission.cs
- ByteConverter.cs
- TimerElapsedEvenArgs.cs
- ImageAnimator.cs
- CollectionsUtil.cs
- ToolStripItemRenderEventArgs.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ConfigurationValue.cs
- ReferenceEqualityComparer.cs
- Semaphore.cs
- RoleGroup.cs
- _Connection.cs
- TableProviderWrapper.cs
- AnimationStorage.cs
- HitTestWithGeometryDrawingContextWalker.cs
- GraphicsState.cs
- dbenumerator.cs
- PropertyEntry.cs
- ExpressionBuilderContext.cs
- PointLight.cs
- OutputScope.cs
- VisualTreeHelper.cs
- WebEventTraceProvider.cs
- AggregateException.cs
- MetafileHeaderWmf.cs
- SourceFileInfo.cs
- RuntimeResourceSet.cs
- HeaderPanel.cs
- CompiledQueryCacheKey.cs
- RestHandlerFactory.cs
- SqlEnums.cs
- __TransparentProxy.cs
- MediaScriptCommandRoutedEventArgs.cs
- CharacterHit.cs
- DataGridViewComboBoxCell.cs
- StringSorter.cs
- AssociationType.cs
- PrimarySelectionGlyph.cs
- XmlSubtreeReader.cs
- QueryCursorEventArgs.cs
- SqlUtil.cs
- TemplateDefinition.cs
- QueryExtender.cs
- SqlUnionizer.cs
- _ProxyRegBlob.cs
- SettingsPropertyValue.cs
- MexHttpBindingElement.cs
- GestureRecognizer.cs
- FontConverter.cs
- SqlGatherConsumedAliases.cs
- WebPartConnectVerb.cs
- NonBatchDirectoryCompiler.cs
- _SslSessionsCache.cs
- SessionParameter.cs
- CopyOnWriteList.cs
- InternalRelationshipCollection.cs
- ParseChildrenAsPropertiesAttribute.cs