Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / ConfigurationSection.cs / 1 / ConfigurationSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Collections.Specialized; using System.Configuration.Internal; using System.IO; using System.Reflection; using System.Security; using System.Text; using System.Xml; using System.Globalization; public abstract class ConfigurationSection : ConfigurationElement { private SectionInformation _section; // Constructor // protected ConfigurationSection() { _section = new SectionInformation( this ); } // SectionInformation property // // Retrieve the class associated with the Section information // public SectionInformation SectionInformation { get { return _section; } } // GetRuntimeObject // // Return the Runtime Object for this Section // protected internal virtual object GetRuntimeObject() { return this; } protected internal override bool IsModified() { return ( SectionInformation.IsModifiedFlags() || base.IsModified() ); } protected internal override void ResetModified() { SectionInformation.ResetModifiedFlags(); base.ResetModified(); } protected internal virtual void DeserializeSection(XmlReader reader) { if (!reader.Read() || reader.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), reader); } DeserializeElement(reader, false); } protected internal virtual string SerializeSection(ConfigurationElement parentElement, string name, ConfigurationSaveMode saveMode) { ValidateElement(this, null, true); ConfigurationElement TempElement = CreateElement(this.GetType()); TempElement.Unmerge(this, parentElement, saveMode); StringWriter strWriter = new StringWriter(CultureInfo.InvariantCulture); XmlTextWriter writer = new XmlTextWriter(strWriter); writer.Formatting = Formatting.Indented; writer.Indentation = 4; writer.IndentChar = ' '; TempElement.DataToWriteInternal = (saveMode != ConfigurationSaveMode.Minimal); TempElement.SerializeToXmlElement(writer, name); writer.Flush(); return strWriter.ToString(); } } } // 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.Collections.Specialized; using System.Configuration.Internal; using System.IO; using System.Reflection; using System.Security; using System.Text; using System.Xml; using System.Globalization; public abstract class ConfigurationSection : ConfigurationElement { private SectionInformation _section; // Constructor // protected ConfigurationSection() { _section = new SectionInformation( this ); } // SectionInformation property // // Retrieve the class associated with the Section information // public SectionInformation SectionInformation { get { return _section; } } // GetRuntimeObject // // Return the Runtime Object for this Section // protected internal virtual object GetRuntimeObject() { return this; } protected internal override bool IsModified() { return ( SectionInformation.IsModifiedFlags() || base.IsModified() ); } protected internal override void ResetModified() { SectionInformation.ResetModifiedFlags(); base.ResetModified(); } protected internal virtual void DeserializeSection(XmlReader reader) { if (!reader.Read() || reader.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), reader); } DeserializeElement(reader, false); } protected internal virtual string SerializeSection(ConfigurationElement parentElement, string name, ConfigurationSaveMode saveMode) { ValidateElement(this, null, true); ConfigurationElement TempElement = CreateElement(this.GetType()); TempElement.Unmerge(this, parentElement, saveMode); StringWriter strWriter = new StringWriter(CultureInfo.InvariantCulture); XmlTextWriter writer = new XmlTextWriter(strWriter); writer.Formatting = Formatting.Indented; writer.Indentation = 4; writer.IndentChar = ' '; TempElement.DataToWriteInternal = (saveMode != ConfigurationSaveMode.Minimal); TempElement.SerializeToXmlElement(writer, name); writer.Flush(); return strWriter.ToString(); } } } // 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
- ListenerSessionConnection.cs
- ListControlStringCollectionEditor.cs
- CompilerCollection.cs
- TextServicesManager.cs
- XmlWrappingReader.cs
- XPathNodePointer.cs
- PropertyValueChangedEvent.cs
- CriticalExceptions.cs
- PropertyInfoSet.cs
- IxmlLineInfo.cs
- QilList.cs
- Hashtable.cs
- CodeStatement.cs
- HideDisabledControlAdapter.cs
- EntityContainer.cs
- Html32TextWriter.cs
- DesignColumnCollection.cs
- XmlLanguageConverter.cs
- RegisteredDisposeScript.cs
- FileUtil.cs
- GrammarBuilderDictation.cs
- MetadataSerializer.cs
- MaterialCollection.cs
- WebPartEditorApplyVerb.cs
- Style.cs
- ExceptionHelpers.cs
- WindowsAltTab.cs
- SiteIdentityPermission.cs
- SqlRowUpdatedEvent.cs
- WindowsNonControl.cs
- ValidationRuleCollection.cs
- NavigationService.cs
- ActivityTypeDesigner.xaml.cs
- ColorConvertedBitmapExtension.cs
- MatrixAnimationUsingKeyFrames.cs
- ExtensionQuery.cs
- DockPattern.cs
- SchemaTypeEmitter.cs
- Socket.cs
- FileDataSourceCache.cs
- CookieHandler.cs
- ScriptReferenceBase.cs
- FormatterConverter.cs
- DataGridViewAccessibleObject.cs
- MemberHolder.cs
- XmlConvert.cs
- Serializer.cs
- ValueTable.cs
- RadioButtonList.cs
- HostElement.cs
- DesignerOptionService.cs
- NullableIntAverageAggregationOperator.cs
- ResourceSet.cs
- Merger.cs
- CatalogZone.cs
- ClientSettingsProvider.cs
- ExtractorMetadata.cs
- FacetDescriptionElement.cs
- DataSourceControl.cs
- Debug.cs
- DbgCompiler.cs
- DataGridCell.cs
- DictionaryMarkupSerializer.cs
- HelpInfo.cs
- EventMap.cs
- SymbolType.cs
- GeneralTransform2DTo3D.cs
- SqlRowUpdatedEvent.cs
- SmtpCommands.cs
- MediaScriptCommandRoutedEventArgs.cs
- DecimalAnimationBase.cs
- HttpStaticObjectsCollectionBase.cs
- SimpleWorkerRequest.cs
- PropagatorResult.cs
- path.cs
- BaseCollection.cs
- IndentTextWriter.cs
- UIElement.cs
- MailAddressParser.cs
- WSTrustDec2005.cs
- PerspectiveCamera.cs
- RichTextBoxAutomationPeer.cs
- DataServiceProviderWrapper.cs
- GcSettings.cs
- WebBrowserEvent.cs
- GeneralTransform2DTo3DTo2D.cs
- QilGenerator.cs
- XPathItem.cs
- ClientBuildManager.cs
- OAVariantLib.cs
- TypeBuilderInstantiation.cs
- VectorAnimationBase.cs
- DataKey.cs
- UdpContractFilterBehavior.cs
- processwaithandle.cs
- FileRegion.cs
- EntityParameter.cs
- Array.cs
- BitmapEffectInput.cs
- DataSourceProvider.cs