Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 1305376 / ProfileGroupSettings.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; public sealed class ProfileGroupSettings : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), null, null, ProfilePropertyNameValidator.SingletonInstance, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propProperties = new ConfigurationProperty(null, typeof(ProfilePropertySettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static ProfileGroupSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propProperties); } internal void InternalDeserialize(XmlReader reader, bool serializeCollectionKey) { DeserializeElement(reader, serializeCollectionKey); } internal ProfileGroupSettings() { } public ProfileGroupSettings(string name) { base[_propName] = name; } public override bool Equals(object obj) { ProfileGroupSettings o = obj as ProfileGroupSettings; return (o != null && Name == o.Name && Object.Equals(PropertySettings, o.PropertySettings)); } public override int GetHashCode() { return Name.GetHashCode() ^ PropertySettings.GetHashCode(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("name", IsRequired = true, IsKey = true)] public string Name { get { return (string)base[_propName]; } } [ConfigurationProperty("", IsDefaultCollection = true)] public ProfilePropertySettingsCollection PropertySettings { get { return (ProfilePropertySettingsCollection)base[_propProperties]; } } internal void InternalReset(ProfileGroupSettings parentSettings) { base.Reset(parentSettings); } internal void InternalUnmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode) { base.Unmerge(sourceElement, parentElement, saveMode); // Base merge to get locks merged } } // class ProfileGroupSettings } // 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; public sealed class ProfileGroupSettings : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), null, null, ProfilePropertyNameValidator.SingletonInstance, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propProperties = new ConfigurationProperty(null, typeof(ProfilePropertySettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static ProfileGroupSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propProperties); } internal void InternalDeserialize(XmlReader reader, bool serializeCollectionKey) { DeserializeElement(reader, serializeCollectionKey); } internal ProfileGroupSettings() { } public ProfileGroupSettings(string name) { base[_propName] = name; } public override bool Equals(object obj) { ProfileGroupSettings o = obj as ProfileGroupSettings; return (o != null && Name == o.Name && Object.Equals(PropertySettings, o.PropertySettings)); } public override int GetHashCode() { return Name.GetHashCode() ^ PropertySettings.GetHashCode(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("name", IsRequired = true, IsKey = true)] public string Name { get { return (string)base[_propName]; } } [ConfigurationProperty("", IsDefaultCollection = true)] public ProfilePropertySettingsCollection PropertySettings { get { return (ProfilePropertySettingsCollection)base[_propProperties]; } } internal void InternalReset(ProfileGroupSettings parentSettings) { base.Reset(parentSettings); } internal void InternalUnmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode) { base.Unmerge(sourceElement, parentElement, saveMode); // Base merge to get locks merged } } // class ProfileGroupSettings } // 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
- BinaryParser.cs
- CurrentChangingEventManager.cs
- WindowsAuthenticationModule.cs
- ListViewSortEventArgs.cs
- WebServiceResponseDesigner.cs
- LogReservationCollection.cs
- ConnectionPoint.cs
- LiteralText.cs
- ToolStripProgressBar.cs
- ToolBarTray.cs
- XmlSerializerVersionAttribute.cs
- TemplateXamlParser.cs
- AsymmetricAlgorithm.cs
- ScaleTransform.cs
- FontCollection.cs
- WorkflowInstanceExtensionProvider.cs
- DoubleLinkList.cs
- Themes.cs
- HttpCachePolicyElement.cs
- Propagator.cs
- CacheDependency.cs
- GenerateScriptTypeAttribute.cs
- DataBoundLiteralControl.cs
- AsymmetricKeyExchangeFormatter.cs
- DesignerTransaction.cs
- HwndSource.cs
- RectangleHotSpot.cs
- MediaContextNotificationWindow.cs
- CapabilitiesUse.cs
- DataContractSerializer.cs
- ExclusiveTcpListener.cs
- DBConnection.cs
- TreeViewCancelEvent.cs
- ApplyTemplatesAction.cs
- TreeSet.cs
- GeometryDrawing.cs
- InteropDesigner.xaml.cs
- SecurityHeaderLayout.cs
- ArgumentNullException.cs
- RSAPKCS1SignatureFormatter.cs
- EntityDataSourceQueryBuilder.cs
- ElementNotEnabledException.cs
- DesignerActionTextItem.cs
- ExecutedRoutedEventArgs.cs
- shaperfactoryquerycachekey.cs
- HotCommands.cs
- GlyphingCache.cs
- UniqueConstraint.cs
- StreamReader.cs
- TraceUtility.cs
- DrawingVisualDrawingContext.cs
- NavigationProperty.cs
- StorageEntityTypeMapping.cs
- PolicyStatement.cs
- XmlSchemaSimpleContentExtension.cs
- DocumentationServerProtocol.cs
- CompiledQueryCacheKey.cs
- PerformanceCounterPermissionAttribute.cs
- SafeNativeMethods.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- Line.cs
- UserUseLicenseDictionaryLoader.cs
- Vector3dCollection.cs
- WebPartExportVerb.cs
- DockingAttribute.cs
- DataSourceProvider.cs
- PreviewPageInfo.cs
- AncestorChangedEventArgs.cs
- OracleRowUpdatedEventArgs.cs
- DPCustomTypeDescriptor.cs
- MasterPage.cs
- PageThemeBuildProvider.cs
- VisualProxy.cs
- AdapterUtil.cs
- InvalidOperationException.cs
- X509Utils.cs
- ProfileProvider.cs
- Quaternion.cs
- TCEAdapterGenerator.cs
- Point.cs
- CompiledAction.cs
- TypeInformation.cs
- SqlDataAdapter.cs
- RouteValueExpressionBuilder.cs
- XPathBuilder.cs
- ToolStripComboBox.cs
- SimpleHandlerFactory.cs
- ArgumentOutOfRangeException.cs
- ConnectionManagementElement.cs
- IndicCharClassifier.cs
- ForeignKeyFactory.cs
- GridViewCellAutomationPeer.cs
- AppearanceEditorPart.cs
- Rules.cs
- ListViewUpdateEventArgs.cs
- FastEncoderWindow.cs
- ContainerUtilities.cs
- IssuedSecurityTokenProvider.cs
- AppDomainFactory.cs
- PointIndependentAnimationStorage.cs