Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 2 / 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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 }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MouseGesture.cs
- CallSiteBinder.cs
- NamespaceInfo.cs
- LayoutInformation.cs
- SerializationInfoEnumerator.cs
- ProfileManager.cs
- XmlMapping.cs
- RoutingConfiguration.cs
- Accessible.cs
- SelectionEditor.cs
- MimePart.cs
- ConnectionOrientedTransportBindingElement.cs
- ResourceExpressionBuilder.cs
- SchemaCollectionCompiler.cs
- SystemFonts.cs
- GridEntryCollection.cs
- FixedDocumentPaginator.cs
- _AcceptOverlappedAsyncResult.cs
- IItemContainerGenerator.cs
- UriScheme.cs
- MergeFilterQuery.cs
- OracleInternalConnection.cs
- SqlDataSourceView.cs
- XmlLinkedNode.cs
- WebPartChrome.cs
- GiveFeedbackEventArgs.cs
- DiscoveryEndpointValidator.cs
- HttpListenerPrefixCollection.cs
- AnimationClockResource.cs
- XmlNodeChangedEventArgs.cs
- ListView.cs
- GlyphShapingProperties.cs
- PageHandlerFactory.cs
- PropertyValueEditor.cs
- DescendantBaseQuery.cs
- PasswordTextContainer.cs
- VisualStyleInformation.cs
- TemplatePropertyEntry.cs
- RegexCharClass.cs
- PointConverter.cs
- GlobalItem.cs
- ParameterCollection.cs
- TextFormatterImp.cs
- BufferedWebEventProvider.cs
- ObjectItemAssemblyLoader.cs
- Tokenizer.cs
- ClassDataContract.cs
- ReadOnlyDataSource.cs
- AuthenticationModulesSection.cs
- Transactions.cs
- PrtCap_Reader.cs
- MarkedHighlightComponent.cs
- ListBoxItem.cs
- Trigger.cs
- ModelFunction.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- ProcessHostConfigUtils.cs
- MailAddressCollection.cs
- AdapterUtil.cs
- ipaddressinformationcollection.cs
- SessionPageStatePersister.cs
- NextPreviousPagerField.cs
- Html32TextWriter.cs
- CollectionViewProxy.cs
- Thread.cs
- WindowsFormsLinkLabel.cs
- CharacterString.cs
- ExtenderProvidedPropertyAttribute.cs
- ContentPresenter.cs
- oledbconnectionstring.cs
- AutomationElement.cs
- ImageSourceTypeConverter.cs
- WebDisplayNameAttribute.cs
- DataBindEngine.cs
- WebCategoryAttribute.cs
- CodeDOMUtility.cs
- FrameworkContentElement.cs
- ItemsControl.cs
- FontUnitConverter.cs
- ProcessHostFactoryHelper.cs
- LinqDataSourceUpdateEventArgs.cs
- FieldMetadata.cs
- WebMessageEncodingElement.cs
- ListViewInsertedEventArgs.cs
- ProjectionCamera.cs
- Compiler.cs
- SoapEnumAttribute.cs
- Ops.cs
- SynchronizationContext.cs
- GrammarBuilderBase.cs
- RoleGroup.cs
- ReadOnlyDictionary.cs
- SimpleBitVector32.cs
- TemplateXamlParser.cs
- TransactionProtocol.cs
- FrameworkTextComposition.cs
- CodeNamespaceImportCollection.cs
- TemplateControlBuildProvider.cs
- GridViewUpdatedEventArgs.cs
- DataSourceControl.cs