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
- ValidationRuleCollection.cs
- HttpStreamMessage.cs
- EntityClassGenerator.cs
- Stroke.cs
- ConfigurationStrings.cs
- TCPClient.cs
- FontSizeConverter.cs
- PathFigureCollection.cs
- HotSpotCollection.cs
- SqlDeflator.cs
- PackageStore.cs
- DispatcherHookEventArgs.cs
- EdmEntityTypeAttribute.cs
- SetterBase.cs
- DiscardableAttribute.cs
- Animatable.cs
- DBConnection.cs
- SafeRegistryHandle.cs
- DesignerActionMethodItem.cs
- PageThemeParser.cs
- UndoEngine.cs
- XmlSchemaObject.cs
- SmiTypedGetterSetter.cs
- JsonReader.cs
- RadioButtonAutomationPeer.cs
- CryptoKeySecurity.cs
- TokenDescriptor.cs
- ComponentSerializationService.cs
- SqlClientWrapperSmiStreamChars.cs
- RotateTransform3D.cs
- TraceSection.cs
- UriSection.cs
- CheckedPointers.cs
- AssemblyCollection.cs
- ResXBuildProvider.cs
- FormsAuthenticationUserCollection.cs
- BaseServiceProvider.cs
- HttpHandler.cs
- ToolboxComponentsCreatedEventArgs.cs
- ConstraintCollection.cs
- PropertyCollection.cs
- DictionaryBase.cs
- Pair.cs
- TrackingMemoryStream.cs
- Guid.cs
- sortedlist.cs
- SubMenuStyleCollectionEditor.cs
- SafeCoTaskMem.cs
- SByteConverter.cs
- UserPreference.cs
- SchemaElementDecl.cs
- ComponentGuaranteesAttribute.cs
- ClassHandlersStore.cs
- ParseNumbers.cs
- Descriptor.cs
- Utilities.cs
- SequenceDesigner.cs
- DataSourceXmlTextReader.cs
- HttpModuleCollection.cs
- BuilderInfo.cs
- DataExpression.cs
- AssemblyInfo.cs
- XmlComment.cs
- SchemaType.cs
- WebPartDescription.cs
- TextDocumentView.cs
- FixedSOMContainer.cs
- PageAdapter.cs
- UITypeEditor.cs
- AppSettingsReader.cs
- BindableAttribute.cs
- XmlWriterSettings.cs
- SourceFileBuildProvider.cs
- PersonalizableAttribute.cs
- ToolboxService.cs
- Label.cs
- RequestTimeoutManager.cs
- NegotiateStream.cs
- StringValidatorAttribute.cs
- TemplateDefinition.cs
- PolyQuadraticBezierSegment.cs
- TextRangeAdaptor.cs
- MultipleViewPattern.cs
- Stack.cs
- InvalidCastException.cs
- WCFServiceClientProxyGenerator.cs
- AutoResetEvent.cs
- HandoffBehavior.cs
- TabItemAutomationPeer.cs
- Converter.cs
- ErrorFormatter.cs
- SqlGatherProducedAliases.cs
- AnnotationHighlightLayer.cs
- ToolStripKeyboardHandlingService.cs
- ValueConversionAttribute.cs
- ApplicationDirectory.cs
- ChangeTracker.cs
- TimeSpanStorage.cs
- Misc.cs
- SafeIUnknown.cs