Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Configuration / System / Configuration / KeyValueConfigurationElement.cs / 1 / KeyValueConfigurationElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; public class KeyValueConfigurationElement : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propKey = new ConfigurationProperty("key", typeof(string), String.Empty, ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired); private static readonly ConfigurationProperty _propValue = new ConfigurationProperty("value", typeof(string), String.Empty, ConfigurationPropertyOptions.None); static KeyValueConfigurationElement() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propKey); _properties.Add(_propValue); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } bool _needsInit; string _initKey; string _initValue; // // Constructor // internal KeyValueConfigurationElement() { } public KeyValueConfigurationElement(string key, string value) { _needsInit = true; _initKey = key; _initValue = value; } protected internal override void Init() { base.Init(); // We cannot initialize configuration properties in the constructor, // because Properties is an overridable virtual property that // hence may not be available in the constructor. if (_needsInit) { _needsInit = false; base[_propKey] = _initKey; Value = _initValue; } } // // Properties // [ConfigurationProperty("key", Options = ConfigurationPropertyOptions.IsKey, DefaultValue = "")] public string Key { get { return (string)base[_propKey]; } } [ConfigurationProperty("value", DefaultValue = "")] public string Value { get { return (string)base[_propValue]; } set { base[_propValue] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; public class KeyValueConfigurationElement : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propKey = new ConfigurationProperty("key", typeof(string), String.Empty, ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired); private static readonly ConfigurationProperty _propValue = new ConfigurationProperty("value", typeof(string), String.Empty, ConfigurationPropertyOptions.None); static KeyValueConfigurationElement() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propKey); _properties.Add(_propValue); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } bool _needsInit; string _initKey; string _initValue; // // Constructor // internal KeyValueConfigurationElement() { } public KeyValueConfigurationElement(string key, string value) { _needsInit = true; _initKey = key; _initValue = value; } protected internal override void Init() { base.Init(); // We cannot initialize configuration properties in the constructor, // because Properties is an overridable virtual property that // hence may not be available in the constructor. if (_needsInit) { _needsInit = false; base[_propKey] = _initKey; Value = _initValue; } } // // Properties // [ConfigurationProperty("key", Options = ConfigurationPropertyOptions.IsKey, DefaultValue = "")] public string Key { get { return (string)base[_propKey]; } } [ConfigurationProperty("value", DefaultValue = "")] public string Value { get { return (string)base[_propValue]; } set { base[_propValue] = 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
- XmlEventCache.cs
- GrowingArray.cs
- Bits.cs
- ListParaClient.cs
- MSAAEventDispatcher.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- ProjectionPruner.cs
- Section.cs
- EdgeProfileValidation.cs
- PenThreadPool.cs
- LayoutEditorPart.cs
- SettingsContext.cs
- WizardPanel.cs
- login.cs
- CurrencyWrapper.cs
- FastEncoder.cs
- DataGridViewCellLinkedList.cs
- NonSerializedAttribute.cs
- Module.cs
- IMembershipProvider.cs
- GlobalAclOperationRequirement.cs
- TextWriter.cs
- WmlPageAdapter.cs
- AppearanceEditorPart.cs
- WebServiceBindingAttribute.cs
- COAUTHINFO.cs
- HtmlSelect.cs
- CodeTypeParameter.cs
- _CookieModule.cs
- UxThemeWrapper.cs
- ColorAnimation.cs
- RC2.cs
- XPathDocumentIterator.cs
- NetworkAddressChange.cs
- DocumentPageTextView.cs
- MarshalDirectiveException.cs
- EntityContainerEntitySet.cs
- FileEnumerator.cs
- Int32CollectionValueSerializer.cs
- OptimizedTemplateContent.cs
- DocumentViewerHelper.cs
- BindingWorker.cs
- NetworkCredential.cs
- WindowShowOrOpenTracker.cs
- RegexCompilationInfo.cs
- InputMethodStateChangeEventArgs.cs
- DataServiceEntityAttribute.cs
- PriorityQueue.cs
- BamlMapTable.cs
- ListDictionary.cs
- StylusSystemGestureEventArgs.cs
- WmlPhoneCallAdapter.cs
- XmlEntity.cs
- SoapSchemaMember.cs
- parserscommon.cs
- MetadataException.cs
- TreeView.cs
- HatchBrush.cs
- KnownBoxes.cs
- IdnMapping.cs
- NumericExpr.cs
- InfoCardHelper.cs
- XamlVector3DCollectionSerializer.cs
- GacUtil.cs
- WebPartHelpVerb.cs
- SqlClientFactory.cs
- SafeProcessHandle.cs
- ScriptingWebServicesSectionGroup.cs
- XmlDataSourceDesigner.cs
- VolatileEnlistmentMultiplexing.cs
- SystemNetworkInterface.cs
- TrackingServices.cs
- DbXmlEnabledProviderManifest.cs
- CallbackBehaviorAttribute.cs
- ProcessProtocolHandler.cs
- TextRangeEditLists.cs
- CompoundFileStorageReference.cs
- BitmapSizeOptions.cs
- HttpException.cs
- GetWinFXPath.cs
- CookielessHelper.cs
- StylusPointProperty.cs
- SeverityFilter.cs
- GlobalAllocSafeHandle.cs
- XPathConvert.cs
- SystemGatewayIPAddressInformation.cs
- DataTableClearEvent.cs
- DataGridViewCellCollection.cs
- XmlSchemaException.cs
- Gdiplus.cs
- smtpconnection.cs
- DependencyStoreSurrogate.cs
- MetadataItem_Static.cs
- Environment.cs
- GraphicsPathIterator.cs
- SqlVisitor.cs
- QueryConverter.cs
- RequestQueryProcessor.cs
- Input.cs
- TraceHandlerErrorFormatter.cs