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
- ValidationHelpers.cs
- FixedTextContainer.cs
- HtmlToClrEventProxy.cs
- ComponentGuaranteesAttribute.cs
- ContractNamespaceAttribute.cs
- TypeSemantics.cs
- HostingPreferredMapPath.cs
- BitSet.cs
- Native.cs
- ItemContainerProviderWrapper.cs
- CommandField.cs
- WCFModelStrings.Designer.cs
- NameObjectCollectionBase.cs
- SafeNativeMethods.cs
- DataRelation.cs
- ScriptComponentDescriptor.cs
- GridViewColumnCollection.cs
- Error.cs
- AstTree.cs
- UInt16Converter.cs
- MimeBasePart.cs
- LinqDataSourceValidationException.cs
- AvTraceFormat.cs
- PropertyValueChangedEvent.cs
- HttpCacheParams.cs
- DragStartedEventArgs.cs
- X509Certificate.cs
- regiisutil.cs
- ChannelTracker.cs
- ObsoleteAttribute.cs
- UntypedNullExpression.cs
- elementinformation.cs
- GAC.cs
- AssemblyBuilder.cs
- Substitution.cs
- CodeDirectoryCompiler.cs
- TypeUsage.cs
- FolderBrowserDialog.cs
- AuthenticatedStream.cs
- ReferencedType.cs
- TabletDevice.cs
- CorrelationService.cs
- NavigationService.cs
- VarInfo.cs
- MailBnfHelper.cs
- SqlCachedBuffer.cs
- ShaderEffect.cs
- SmtpException.cs
- MSAAWinEventWrap.cs
- MdiWindowListItemConverter.cs
- OdbcReferenceCollection.cs
- NumberAction.cs
- ThumbAutomationPeer.cs
- JsonXmlDataContract.cs
- DynamicField.cs
- mediaclock.cs
- WsatProxy.cs
- TypeLibConverter.cs
- VirtualPathProvider.cs
- DbExpressionBuilder.cs
- EncoderBestFitFallback.cs
- TcpTransportSecurity.cs
- SystemSounds.cs
- PerspectiveCamera.cs
- DownloadProgressEventArgs.cs
- NavigatorOutput.cs
- CanonicalizationDriver.cs
- EncoderExceptionFallback.cs
- webproxy.cs
- complextypematerializer.cs
- GridViewColumnHeaderAutomationPeer.cs
- ZipIOExtraFieldZip64Element.cs
- XslNumber.cs
- ViewStateException.cs
- OdbcConnectionHandle.cs
- BamlBinaryReader.cs
- Pen.cs
- Rijndael.cs
- ClientData.cs
- RenderOptions.cs
- __Filters.cs
- BooleanExpr.cs
- ScrollViewer.cs
- ChtmlCalendarAdapter.cs
- DataGridRelationshipRow.cs
- ServiceModelEnumValidatorAttribute.cs
- ComponentChangingEvent.cs
- RegistryPermission.cs
- SQLRoleProvider.cs
- TextAutomationPeer.cs
- ProtocolsSection.cs
- SqlDataReader.cs
- MobileControlsSection.cs
- FieldNameLookup.cs
- Timer.cs
- ProxyGenerationError.cs
- ButtonField.cs
- SharedPersonalizationStateInfo.cs
- GorillaCodec.cs
- EastAsianLunisolarCalendar.cs