Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
![Network programming in C#, Network Programming in VB.NET, Network Programming in .NET](/images/book.jpg)
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListBox.cs
- COM2Enum.cs
- IgnoreFileBuildProvider.cs
- SQLMoneyStorage.cs
- ListView.cs
- LogSwitch.cs
- TextBoxAutoCompleteSourceConverter.cs
- BitmapEffectInput.cs
- RuleSetDialog.cs
- ImageButton.cs
- GridViewColumnCollectionChangedEventArgs.cs
- SoapInteropTypes.cs
- SequentialOutput.cs
- EntryIndex.cs
- DataService.cs
- EndpointDesigner.cs
- FormsAuthentication.cs
- FileAuthorizationModule.cs
- FormViewCommandEventArgs.cs
- LabelEditEvent.cs
- SqlCacheDependencySection.cs
- BinaryFormatterWriter.cs
- CalendarTable.cs
- HtmlInputFile.cs
- PlainXmlWriter.cs
- XmlValidatingReaderImpl.cs
- Slider.cs
- ColumnCollection.cs
- GridViewAutomationPeer.cs
- EventLogRecord.cs
- ClientConfigPaths.cs
- OuterGlowBitmapEffect.cs
- ViewGenResults.cs
- BaseTemplateBuildProvider.cs
- FocusTracker.cs
- HandlerMappingMemo.cs
- DetailsViewPagerRow.cs
- AssertFilter.cs
- DiscoveryDocument.cs
- AttachedAnnotation.cs
- ViewBox.cs
- GridViewSelectEventArgs.cs
- WorkflowQueue.cs
- MultipleCopiesCollection.cs
- PropertyMetadata.cs
- TaskHelper.cs
- PKCS1MaskGenerationMethod.cs
- CommentEmitter.cs
- SqlDelegatedTransaction.cs
- ActivityBuilder.cs
- MimeTypePropertyAttribute.cs
- BaseValidatorDesigner.cs
- RSACryptoServiceProvider.cs
- DPTypeDescriptorContext.cs
- Translator.cs
- NameTable.cs
- ProtectedConfigurationSection.cs
- MenuItem.cs
- GeneralTransformGroup.cs
- TextViewSelectionProcessor.cs
- __Error.cs
- XmlNamespaceManager.cs
- FileNotFoundException.cs
- GrabHandleGlyph.cs
- NaturalLanguageHyphenator.cs
- MatrixValueSerializer.cs
- RequestQueryProcessor.cs
- TitleStyle.cs
- Drawing.cs
- x509store.cs
- EntityType.cs
- SoapEnumAttribute.cs
- AbstractSvcMapFileLoader.cs
- DivideByZeroException.cs
- ExpressionNode.cs
- HtmlTableCell.cs
- HandleExceptionArgs.cs
- securitycriticaldata.cs
- ToolboxComponentsCreatingEventArgs.cs
- ObjectHandle.cs
- EditingScopeUndoUnit.cs
- StreamGeometry.cs
- PowerStatus.cs
- FixUpCollection.cs
- BrowserInteropHelper.cs
- Timeline.cs
- safemediahandle.cs
- HttpAsyncResult.cs
- ConcatQueryOperator.cs
- DesignerOptionService.cs
- SQLMoneyStorage.cs
- LocalizeDesigner.cs
- ReflectTypeDescriptionProvider.cs
- DynamicMethod.cs
- SystemIcmpV6Statistics.cs
- WinEventWrap.cs
- BStrWrapper.cs
- DataTableNewRowEvent.cs
- BufferedGraphicsContext.cs
- TreeIterator.cs