Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / RootProfilePropertySettingsCollection.cs / 2 / RootProfilePropertySettingsCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Web.Util; using System.Security.Permissions; // class ProfileSection // ProfileGroupSettingsCollection [ConfigurationCollection(typeof(ProfilePropertySettings))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class RootProfilePropertySettingsCollection : ProfilePropertySettingsCollection { private ProfileGroupSettingsCollection _propGroups = new ProfileGroupSettingsCollection(); private static ConfigurationPropertyCollection _properties; static RootProfilePropertySettingsCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public RootProfilePropertySettingsCollection() { } protected override bool AllowClear { get { return true; } } protected override bool ThrowOnDuplicate { get { return true; } } protected override bool OnDeserializeUnrecognizedElement(String elementName, XmlReader reader) { bool handled = false; // Deal with the "group" element if (elementName == "group") { ProfileGroupSettingsCollection groupCollection; ProfileGroupSettings newGroupSettings; ProfileGroupSettings curGroupSettings = null; string name = reader.GetAttribute("name"); groupCollection = GroupSettings; if (name != null) { curGroupSettings = groupCollection[name]; } newGroupSettings = new ProfileGroupSettings(); newGroupSettings.InternalReset(curGroupSettings); newGroupSettings.InternalDeserialize(reader, false); groupCollection.AddOrReplace(newGroupSettings); handled = true; } else { if (elementName == "clear") { GroupSettings.Clear(); } // Let the base class deal with "add, remove, clear" handled = base.OnDeserializeUnrecognizedElement(elementName, reader); } return handled; } protected override bool IsModified() { return base.IsModified() || GroupSettings.InternalIsModified(); } protected override void ResetModified() { base.ResetModified(); GroupSettings.InternalResetModified(); } public override bool Equals(object rootProfilePropertySettingsCollection) { RootProfilePropertySettingsCollection o = rootProfilePropertySettingsCollection as RootProfilePropertySettingsCollection; return (o != null && Object.Equals(this, o) && Object.Equals(GroupSettings, o.GroupSettings)); } public override int GetHashCode() { return HashCodeCombiner.CombineHashCodes(base.GetHashCode(), GroupSettings.GetHashCode()); } protected override void Reset(ConfigurationElement parentElement) { RootProfilePropertySettingsCollection parent = parentElement as RootProfilePropertySettingsCollection; base.Reset(parentElement); GroupSettings.InternalReset(parent.GroupSettings); } protected override void Unmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode) { RootProfilePropertySettingsCollection parent = parentElement as RootProfilePropertySettingsCollection; RootProfilePropertySettingsCollection source = sourceElement as RootProfilePropertySettingsCollection; base.Unmerge(sourceElement, parentElement, saveMode); GroupSettings.InternalUnMerge(source.GroupSettings, (parent != null) ? parent.GroupSettings : null, saveMode); } protected override bool SerializeElement(XmlWriter writer, bool serializeCollectionKey) { bool DataToWrite = false; if (base.SerializeElement(null, false) == true || GroupSettings.InternalSerialize(null, false) == true) { DataToWrite |= base.SerializeElement(writer, false); DataToWrite |= GroupSettings.InternalSerialize(writer, false); } return DataToWrite; } [ConfigurationProperty("group")] public ProfileGroupSettingsCollection GroupSettings { get { return _propGroups; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListBox.cs
- PropertyGrid.cs
- HtmlInputFile.cs
- CalendarItem.cs
- WsdlInspector.cs
- PowerModeChangedEventArgs.cs
- HtmlInputImage.cs
- DocumentOutline.cs
- Comparer.cs
- XPathDescendantIterator.cs
- XPathEmptyIterator.cs
- JavaScriptObjectDeserializer.cs
- SystemIPv4InterfaceProperties.cs
- X509CertificateValidator.cs
- DataStreamFromComStream.cs
- SessionPageStatePersister.cs
- DataListItemCollection.cs
- WinEventHandler.cs
- ChtmlTextWriter.cs
- RuntimeConfigLKG.cs
- IHttpResponseInternal.cs
- RegexTree.cs
- CheckBoxDesigner.cs
- DesignBinding.cs
- ProjectedSlot.cs
- HttpCachePolicy.cs
- XmlNodeList.cs
- ToolBar.cs
- CodeTryCatchFinallyStatement.cs
- ConstantSlot.cs
- Input.cs
- arabicshape.cs
- DateTimeUtil.cs
- BulletChrome.cs
- QueryResults.cs
- CodeAttributeDeclaration.cs
- TransformGroup.cs
- PageCanvasSize.cs
- Int32KeyFrameCollection.cs
- Formatter.cs
- ModuleConfigurationInfo.cs
- SrgsElementFactory.cs
- MD5.cs
- TableItemPattern.cs
- ClientSettingsProvider.cs
- CodeCompiler.cs
- Triangle.cs
- WSSecurityJan2004.cs
- RC2CryptoServiceProvider.cs
- TextChange.cs
- Substitution.cs
- WebPartZoneBase.cs
- InfiniteIntConverter.cs
- FileDialog_Vista_Interop.cs
- PKCS1MaskGenerationMethod.cs
- SemaphoreSlim.cs
- Zone.cs
- XmlException.cs
- EntityCollection.cs
- CodeNamespaceImport.cs
- EdmProviderManifest.cs
- FixedSOMImage.cs
- Misc.cs
- XPathNode.cs
- JsonReaderWriterFactory.cs
- NativeActivity.cs
- Validator.cs
- SchemaImporter.cs
- ChildDocumentBlock.cs
- PathSegment.cs
- SaveFileDialog.cs
- DataGridViewCellConverter.cs
- SizeAnimationClockResource.cs
- SocketException.cs
- MimeTypeMapper.cs
- JavaScriptSerializer.cs
- PageCache.cs
- HttpStaticObjectsCollectionWrapper.cs
- Predicate.cs
- XmlSerializerOperationGenerator.cs
- ClockGroup.cs
- SchemaMapping.cs
- SettingsBase.cs
- TimeSpan.cs
- CanExecuteRoutedEventArgs.cs
- ViewManager.cs
- DetailsViewModeEventArgs.cs
- DataListItemCollection.cs
- QuaternionAnimation.cs
- AssociatedControlConverter.cs
- CloseCryptoHandleRequest.cs
- ByteStack.cs
- CodeMethodReturnStatement.cs
- BatchParser.cs
- Label.cs
- StylusLogic.cs
- PackWebResponse.cs
- HtmlTitle.cs
- WorkflowQueue.cs
- _RegBlobWebProxyDataBuilder.cs