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
- SqlDataSourceCache.cs
- RNGCryptoServiceProvider.cs
- InkSerializer.cs
- CharAnimationUsingKeyFrames.cs
- TrackingMemoryStream.cs
- AccessedThroughPropertyAttribute.cs
- FormatConvertedBitmap.cs
- ConnectionStringsExpressionBuilder.cs
- sortedlist.cs
- QueryComponents.cs
- ResizeGrip.cs
- AbstractExpressions.cs
- DiscreteKeyFrames.cs
- CatalogUtil.cs
- ProcessInfo.cs
- PerformanceCounterPermission.cs
- GetPageNumberCompletedEventArgs.cs
- CodeGeneratorOptions.cs
- SettingsPropertyIsReadOnlyException.cs
- Inline.cs
- ByteStreamGeometryContext.cs
- BasicKeyConstraint.cs
- ColorContextHelper.cs
- ManagementException.cs
- ConstantProjectedSlot.cs
- ColumnResult.cs
- DataTableNewRowEvent.cs
- DispatcherExceptionFilterEventArgs.cs
- XPathSingletonIterator.cs
- SoapFault.cs
- MultipleViewProviderWrapper.cs
- SharedStream.cs
- XmlNotation.cs
- TimeSpanValidatorAttribute.cs
- BaseParagraph.cs
- FontFamily.cs
- PasswordDeriveBytes.cs
- LogWriteRestartAreaState.cs
- DataGridViewAddColumnDialog.cs
- CapiHashAlgorithm.cs
- mansign.cs
- TrackingProfileDeserializationException.cs
- TextElementEditingBehaviorAttribute.cs
- StatusBarAutomationPeer.cs
- ItemCollection.cs
- HtmlTable.cs
- PersonalizationProvider.cs
- DetailsViewInsertEventArgs.cs
- Image.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- WmiPutTraceRecord.cs
- LockRecursionException.cs
- SpnEndpointIdentityExtension.cs
- Padding.cs
- SafeMILHandle.cs
- GCHandleCookieTable.cs
- SqlUserDefinedAggregateAttribute.cs
- PermissionSet.cs
- Operand.cs
- XmlSchemaRedefine.cs
- ContentFileHelper.cs
- HtmlForm.cs
- XamlFigureLengthSerializer.cs
- DbDataRecord.cs
- QueryStringConverter.cs
- xml.cs
- Lasso.cs
- LinearKeyFrames.cs
- EntityDescriptor.cs
- ClientProtocol.cs
- GraphicsPathIterator.cs
- InputLanguageCollection.cs
- DateTimePickerDesigner.cs
- OneToOneMappingSerializer.cs
- BufferedWebEventProvider.cs
- EncodingNLS.cs
- ParameterEditorUserControl.cs
- OutputCacheProfile.cs
- DrawingContext.cs
- RequiredAttributeAttribute.cs
- Stacktrace.cs
- DBSchemaRow.cs
- TextEditorSpelling.cs
- MoveSizeWinEventHandler.cs
- InstanceKeyCompleteException.cs
- CachedCompositeFamily.cs
- GetWinFXPath.cs
- CodeEntryPointMethod.cs
- MouseWheelEventArgs.cs
- SoapReflectionImporter.cs
- IdentitySection.cs
- WebPartZoneCollection.cs
- AppSettingsExpressionEditor.cs
- XmlSerializationWriter.cs
- DataGridViewComboBoxCell.cs
- LoginViewDesigner.cs
- WindowsFormsLinkLabel.cs
- Binding.cs
- IgnoreFlushAndCloseStream.cs
- FileSystemEventArgs.cs