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
- LongValidator.cs
- basevalidator.cs
- ZipIOBlockManager.cs
- CalendarKeyboardHelper.cs
- SafeHandles.cs
- StorageConditionPropertyMapping.cs
- ManagementException.cs
- DBDataPermission.cs
- LoginAutoFormat.cs
- PropertyTab.cs
- SqlClientFactory.cs
- MetaForeignKeyColumn.cs
- EventLogHandle.cs
- SecurityDocument.cs
- ConfigurationSection.cs
- X509PeerCertificateAuthenticationElement.cs
- Utils.cs
- MailMessage.cs
- FontUnit.cs
- Quaternion.cs
- ConnectorEditor.cs
- BlockCollection.cs
- DurationConverter.cs
- TabItem.cs
- IndexedString.cs
- Ops.cs
- OdbcReferenceCollection.cs
- DataGridViewRowCancelEventArgs.cs
- SQLByte.cs
- FlowchartSizeFeature.cs
- Win32PrintDialog.cs
- DataGridViewButtonColumn.cs
- TabControlDesigner.cs
- ControlLocalizer.cs
- AddressHeaderCollection.cs
- StickyNoteContentControl.cs
- TaskFormBase.cs
- ValidationHelper.cs
- ProviderCollection.cs
- DataServiceQueryProvider.cs
- OdbcReferenceCollection.cs
- X509SecurityTokenProvider.cs
- ProfileElement.cs
- FixUpCollection.cs
- ZoomPercentageConverter.cs
- Drawing.cs
- CursorInteropHelper.cs
- TraceProvider.cs
- XPathEmptyIterator.cs
- Convert.cs
- ConsumerConnectionPointCollection.cs
- safelinkcollection.cs
- UIAgentCrashedException.cs
- LocalizableResourceBuilder.cs
- CacheMode.cs
- FontStretchConverter.cs
- PerspectiveCamera.cs
- TableLayoutColumnStyleCollection.cs
- DataGridRowDetailsEventArgs.cs
- EndpointAddressElementBase.cs
- TextContainerChangeEventArgs.cs
- ProcessModelInfo.cs
- ArithmeticException.cs
- WindowPattern.cs
- EventProviderBase.cs
- SqlParameterizer.cs
- InputEventArgs.cs
- EventLogPermission.cs
- AsyncContentLoadedEventArgs.cs
- CompiledQuery.cs
- XmlIgnoreAttribute.cs
- DeploymentSection.cs
- DataTableMapping.cs
- DoubleAnimationUsingKeyFrames.cs
- JournalNavigationScope.cs
- GeneralTransform.cs
- MenuRendererClassic.cs
- DataGridViewCellStateChangedEventArgs.cs
- HMACSHA384.cs
- TitleStyle.cs
- SRGSCompiler.cs
- UrlMapping.cs
- DirectionalLight.cs
- TreeSet.cs
- IDispatchConstantAttribute.cs
- ErrorTableItemStyle.cs
- SafeHandles.cs
- ThreadStartException.cs
- SourceLineInfo.cs
- xmlglyphRunInfo.cs
- ToolStripDropDownItem.cs
- HttpCachePolicy.cs
- NodeLabelEditEvent.cs
- BinaryWriter.cs
- GeometryHitTestParameters.cs
- ConstructorBuilder.cs
- KeySpline.cs
- HttpsHostedTransportConfiguration.cs
- CodeDesigner.cs
- IntSecurity.cs