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
- LinkButton.cs
- ArithmeticException.cs
- ActivityValidator.cs
- TranslateTransform3D.cs
- SoapIgnoreAttribute.cs
- DesignerProperties.cs
- CompositeActivityTypeDescriptor.cs
- NavigationPropertyEmitter.cs
- SymbolUsageManager.cs
- WebBrowserBase.cs
- TextEditorMouse.cs
- DemultiplexingClientMessageFormatter.cs
- DataGridViewComboBoxColumnDesigner.cs
- EventToken.cs
- Message.cs
- ZipIOFileItemStream.cs
- ControlParameter.cs
- TypeTypeConverter.cs
- DateTimeConstantAttribute.cs
- EasingKeyFrames.cs
- WmiEventSink.cs
- KerberosRequestorSecurityToken.cs
- IISMapPath.cs
- WpfWebRequestHelper.cs
- LinkDescriptor.cs
- SecurityRuntime.cs
- XmlILOptimizerVisitor.cs
- XmlWriterDelegator.cs
- BamlLocalizationDictionary.cs
- FilePrompt.cs
- ConstructorNeedsTagAttribute.cs
- FactoryMaker.cs
- TypeBinaryExpression.cs
- WebResourceAttribute.cs
- TypeToken.cs
- MissingSatelliteAssemblyException.cs
- WebPartEditorCancelVerb.cs
- CompositeFontInfo.cs
- FieldMetadata.cs
- DBConnection.cs
- StrokeDescriptor.cs
- tooltip.cs
- SectionInformation.cs
- BindingContext.cs
- EventPrivateKey.cs
- SettingsSavedEventArgs.cs
- XmlQuerySequence.cs
- ClickablePoint.cs
- Win32Native.cs
- ClientCultureInfo.cs
- ProcessProtocolHandler.cs
- DocumentStream.cs
- InputScopeAttribute.cs
- NetStream.cs
- GlyphRunDrawing.cs
- ObjectTag.cs
- Int32Storage.cs
- RouteData.cs
- SizeConverter.cs
- JsonWriter.cs
- AssemblyBuilderData.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- XmlSchemaAttributeGroup.cs
- DefaultShape.cs
- DataControlReferenceCollection.cs
- DynamicScriptObject.cs
- DataStreamFromComStream.cs
- SerialPinChanges.cs
- ObjectDataSourceMethodEventArgs.cs
- StorageScalarPropertyMapping.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- KeyboardDevice.cs
- CodeEntryPointMethod.cs
- _ProxyChain.cs
- ContractReference.cs
- SqlDataSourceSelectingEventArgs.cs
- IPHostEntry.cs
- PipelineModuleStepContainer.cs
- EventWaitHandle.cs
- EditorZone.cs
- OracleException.cs
- Brush.cs
- DataTableCollection.cs
- GeneralTransform.cs
- ProtocolsConfigurationHandler.cs
- TextBlock.cs
- WebPartHeaderCloseVerb.cs
- EventLogPermissionAttribute.cs
- Point.cs
- Border.cs
- JsonServiceDocumentSerializer.cs
- ContentHostHelper.cs
- SolidBrush.cs
- RegexWorker.cs
- RuntimeConfig.cs
- SoapSchemaImporter.cs
- UniqueIdentifierService.cs
- SynchronizingStream.cs
- WmpBitmapEncoder.cs
- MetadataAssemblyHelper.cs