Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / RootProfilePropertySettingsCollection.cs / 1 / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; } } } } // 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
- PopupRootAutomationPeer.cs
- WebPartCollection.cs
- StaticTextPointer.cs
- Object.cs
- DictionaryEntry.cs
- PLINQETWProvider.cs
- PolygonHotSpot.cs
- CookieParameter.cs
- SystemIcmpV4Statistics.cs
- UserPreferenceChangedEventArgs.cs
- ResourceReader.cs
- GeneralTransform2DTo3D.cs
- FileSystemWatcher.cs
- MessageAction.cs
- UnsafeNativeMethodsCLR.cs
- MyContact.cs
- PKCS1MaskGenerationMethod.cs
- BaseCodePageEncoding.cs
- EpmSyndicationContentSerializer.cs
- Int32CAMarshaler.cs
- ChannelServices.cs
- DetailsViewModeEventArgs.cs
- TrackingQuery.cs
- TraceInternal.cs
- SqlDataReaderSmi.cs
- wgx_sdk_version.cs
- ApplicationSecurityInfo.cs
- CompiledQuery.cs
- GridViewPageEventArgs.cs
- ToolStripContainer.cs
- Ops.cs
- ErrorProvider.cs
- MissingSatelliteAssemblyException.cs
- HorizontalAlignConverter.cs
- HScrollProperties.cs
- JsonClassDataContract.cs
- SqlHelper.cs
- PkcsUtils.cs
- FileLoadException.cs
- ConnectorSelectionGlyph.cs
- NumberAction.cs
- DesignerListAdapter.cs
- TreeNode.cs
- SymbolMethod.cs
- MenuRendererClassic.cs
- RoleService.cs
- EdmScalarPropertyAttribute.cs
- WebPartMinimizeVerb.cs
- SoapConverter.cs
- DataGridColumnHeadersPresenter.cs
- HashHelper.cs
- TableLayout.cs
- WindowsEditBoxRange.cs
- ClonableStack.cs
- Int16.cs
- CustomValidator.cs
- SqlServices.cs
- ParameterModifier.cs
- UnsafeNativeMethods.cs
- Win32Interop.cs
- Console.cs
- TableRowCollection.cs
- NativeRecognizer.cs
- documentsequencetextview.cs
- VScrollBar.cs
- SqlConnectionStringBuilder.cs
- SettingsProperty.cs
- ObjectParameter.cs
- ListViewTableCell.cs
- ManagedWndProcTracker.cs
- GridLengthConverter.cs
- StringPropertyBuilder.cs
- UnlockCardRequest.cs
- DefaultWorkflowTransactionService.cs
- WebConfigurationFileMap.cs
- wmiprovider.cs
- LambdaReference.cs
- RootBrowserWindow.cs
- DefinitionBase.cs
- FirstQueryOperator.cs
- AssemblyAttributes.cs
- XmlCharCheckingWriter.cs
- HttpRequestCacheValidator.cs
- TileModeValidation.cs
- DataGridViewDataConnection.cs
- SpanIndex.cs
- MessageDesigner.cs
- OleDbEnumerator.cs
- IisTraceListener.cs
- NullableDecimalMinMaxAggregationOperator.cs
- HttpContextWrapper.cs
- AspNetCacheProfileAttribute.cs
- PropertyKey.cs
- Condition.cs
- PathSegment.cs
- _NegoStream.cs
- SqlFormatter.cs
- DelegateBodyWriter.cs
- BitmapImage.cs
- ImageAttributes.cs