Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Configuration / System / Configuration / IgnoreSection.cs / 1 / IgnoreSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Xml; sealed public class IgnoreSection : ConfigurationSection { private static ConfigurationPropertyCollection s_properties; string _rawXml = string.Empty; bool _isModified; private static ConfigurationPropertyCollection EnsureStaticPropertyBag() { if (s_properties == null) { ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); s_properties = properties; } return s_properties; } public IgnoreSection() { EnsureStaticPropertyBag(); } protected internal override ConfigurationPropertyCollection Properties { get { return EnsureStaticPropertyBag(); } } protected internal override bool IsModified() { return _isModified; } protected internal override void ResetModified() { _isModified = false; } protected internal override void Reset(ConfigurationElement parentSection) { _rawXml = string.Empty; _isModified = false; } protected internal override void DeserializeSection(XmlReader xmlReader) { if (!xmlReader.Read() || xmlReader.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), xmlReader); } _rawXml = xmlReader.ReadOuterXml(); _isModified = true; } protected internal override string SerializeSection(ConfigurationElement parentSection, string name, ConfigurationSaveMode saveMode) { return _rawXml; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Xml; sealed public class IgnoreSection : ConfigurationSection { private static ConfigurationPropertyCollection s_properties; string _rawXml = string.Empty; bool _isModified; private static ConfigurationPropertyCollection EnsureStaticPropertyBag() { if (s_properties == null) { ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); s_properties = properties; } return s_properties; } public IgnoreSection() { EnsureStaticPropertyBag(); } protected internal override ConfigurationPropertyCollection Properties { get { return EnsureStaticPropertyBag(); } } protected internal override bool IsModified() { return _isModified; } protected internal override void ResetModified() { _isModified = false; } protected internal override void Reset(ConfigurationElement parentSection) { _rawXml = string.Empty; _isModified = false; } protected internal override void DeserializeSection(XmlReader xmlReader) { if (!xmlReader.Read() || xmlReader.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_expected_to_find_element), xmlReader); } _rawXml = xmlReader.ReadOuterXml(); _isModified = true; } protected internal override string SerializeSection(ConfigurationElement parentSection, string name, ConfigurationSaveMode saveMode) { return _rawXml; } } } // 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
- TextTabProperties.cs
- HtmlInputFile.cs
- SafeSecurityHelper.cs
- RuntimeConfigurationRecord.cs
- PictureBox.cs
- MouseCaptureWithinProperty.cs
- NamespaceCollection.cs
- XPathNodeIterator.cs
- DoubleKeyFrameCollection.cs
- Splitter.cs
- GiveFeedbackEvent.cs
- DesignerSerializationManager.cs
- SqlCommandAsyncResult.cs
- CodeDOMUtility.cs
- AsymmetricKeyExchangeFormatter.cs
- IncrementalHitTester.cs
- ObjectSecurity.cs
- PipelineDeploymentState.cs
- ProtocolViolationException.cs
- StaticFileHandler.cs
- LinearKeyFrames.cs
- BooleanSwitch.cs
- SecurityState.cs
- WeakEventManager.cs
- AutomationElementCollection.cs
- RegisteredDisposeScript.cs
- DataGridBoolColumn.cs
- WsdlContractConversionContext.cs
- DecimalConstantAttribute.cs
- MatrixValueSerializer.cs
- SqlCaseSimplifier.cs
- FontStretches.cs
- Restrictions.cs
- CqlGenerator.cs
- XmlSerializerSection.cs
- Error.cs
- SchemaContext.cs
- EntityContainerRelationshipSetEnd.cs
- Enlistment.cs
- Nullable.cs
- KoreanLunisolarCalendar.cs
- DataGridTable.cs
- ModelTreeManager.cs
- ForeignConstraint.cs
- AnnouncementDispatcherAsyncResult.cs
- MimeReflector.cs
- DataGridViewCellFormattingEventArgs.cs
- ToolStripLabel.cs
- TextMarkerSource.cs
- PeerCollaboration.cs
- NullExtension.cs
- PEFileReader.cs
- ArraySubsetEnumerator.cs
- InteropTrackingRecord.cs
- GridEntry.cs
- PasswordPropertyTextAttribute.cs
- TdsParserHelperClasses.cs
- DateTimeConstantAttribute.cs
- ListViewPagedDataSource.cs
- CmsUtils.cs
- ImageSourceConverter.cs
- _NegotiateClient.cs
- TextParaLineResult.cs
- IndentTextWriter.cs
- GridViewRow.cs
- TimeEnumHelper.cs
- MachinePropertyVariants.cs
- InvalidContentTypeException.cs
- GeometryCombineModeValidation.cs
- RelationshipConstraintValidator.cs
- ServiceMetadataBehavior.cs
- CollectionViewGroupInternal.cs
- AttributeData.cs
- CalendarButtonAutomationPeer.cs
- CheckBoxStandardAdapter.cs
- CompiledXpathExpr.cs
- StatusBarItemAutomationPeer.cs
- DataGridViewRowEventArgs.cs
- ConfigurationErrorsException.cs
- DBCommand.cs
- SQLMoney.cs
- DataKey.cs
- BitSet.cs
- URI.cs
- ThreadTrace.cs
- XmlSchemaDatatype.cs
- ManagementClass.cs
- PEFileEvidenceFactory.cs
- BamlLocalizationDictionary.cs
- Int32AnimationUsingKeyFrames.cs
- SerialPort.cs
- COMException.cs
- HybridDictionary.cs
- ResXResourceReader.cs
- RijndaelManagedTransform.cs
- InvalidOperationException.cs
- ToolStripHighContrastRenderer.cs
- SqlParameter.cs
- HybridObjectCache.cs
- SystemKeyConverter.cs