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
- XmlSchemaInfo.cs
- UIElement.cs
- ObjectListCommand.cs
- XPathScanner.cs
- PrintingPermissionAttribute.cs
- GridViewCancelEditEventArgs.cs
- LinearGradientBrush.cs
- Renderer.cs
- CollectionEditorDialog.cs
- RepeatBehavior.cs
- SystemResourceHost.cs
- LogLogRecordEnumerator.cs
- XDRSchema.cs
- BaseCollection.cs
- ConnectionPoolRegistry.cs
- PointCollectionConverter.cs
- FragmentNavigationEventArgs.cs
- GcHandle.cs
- ParameterBuilder.cs
- DataRelation.cs
- StateValidator.cs
- DBConnectionString.cs
- DateTimeParse.cs
- SQLUtility.cs
- RoutedEventConverter.cs
- SqlNotificationEventArgs.cs
- DataServiceOperationContext.cs
- TableLayoutStyleCollection.cs
- ByteAnimationUsingKeyFrames.cs
- Monitor.cs
- Geometry.cs
- OperationCanceledException.cs
- HttpContext.cs
- DynamicEntity.cs
- MatrixTransform.cs
- Vector.cs
- Byte.cs
- CodeDOMProvider.cs
- MailMessage.cs
- DetailsViewUpdatedEventArgs.cs
- XmlDataSourceView.cs
- RemotingAttributes.cs
- XmlSerializerAssemblyAttribute.cs
- TextReturnReader.cs
- RelationshipSet.cs
- DataSourceHelper.cs
- StyleSheet.cs
- XmlQueryContext.cs
- VisualTreeHelper.cs
- DeriveBytes.cs
- TableItemPatternIdentifiers.cs
- FormsAuthenticationUserCollection.cs
- TableLayoutPanelCellPosition.cs
- SocketAddress.cs
- ParagraphResult.cs
- PointConverter.cs
- Fault.cs
- RouteValueDictionary.cs
- RemotingConfiguration.cs
- TemplateControlBuildProvider.cs
- ConfigXmlDocument.cs
- CreateParams.cs
- autovalidator.cs
- IssuedTokenServiceElement.cs
- ActivationServices.cs
- FormsAuthenticationModule.cs
- BrowserCapabilitiesFactory.cs
- JsonSerializer.cs
- DateTimeFormatInfoScanner.cs
- DataTrigger.cs
- ResXResourceReader.cs
- InputLangChangeEvent.cs
- CodeTypeReference.cs
- XMLUtil.cs
- SqlDataAdapter.cs
- EmissiveMaterial.cs
- DataGridViewTopRowAccessibleObject.cs
- HtmlFormParameterReader.cs
- ApplicationFileCodeDomTreeGenerator.cs
- SignatureSummaryDialog.cs
- XmlSchemaComplexType.cs
- Line.cs
- CheckBoxPopupAdapter.cs
- MessageEventSubscriptionService.cs
- CatalogPartCollection.cs
- InertiaExpansionBehavior.cs
- HttpListenerRequest.cs
- ProxyWebPart.cs
- DrawListViewItemEventArgs.cs
- StringPropertyBuilder.cs
- WorkflowView.cs
- SQLChars.cs
- ADConnectionHelper.cs
- InternalPermissions.cs
- KeyConstraint.cs
- securitycriticaldataClass.cs
- ScrollBarRenderer.cs
- MailSettingsSection.cs
- XamlSerializer.cs
- MasterPageParser.cs