Code:
/ FX-1434 / FX-1434 / 1.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
- PerformanceCounterManager.cs
- CheckBoxList.cs
- TextElementCollectionHelper.cs
- DataServiceKeyAttribute.cs
- JournalNavigationScope.cs
- CqlLexerHelpers.cs
- Frame.cs
- OdbcCommand.cs
- ObjectQuery.cs
- Effect.cs
- Processor.cs
- SingleResultAttribute.cs
- ReferenceConverter.cs
- ColumnWidthChangedEvent.cs
- ApplicationSecurityManager.cs
- SerializationStore.cs
- Funcletizer.cs
- WSSecurityTokenSerializer.cs
- ItemsPresenter.cs
- SerializationAttributes.cs
- ConfigurationStrings.cs
- NameTable.cs
- XmlLoader.cs
- OdbcPermission.cs
- ServiceRoute.cs
- ContentTextAutomationPeer.cs
- XmlImplementation.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- InputLanguageManager.cs
- _ScatterGatherBuffers.cs
- UnauthorizedWebPart.cs
- WindowsAuthenticationModule.cs
- DataObjectSettingDataEventArgs.cs
- SafeNativeMethodsOther.cs
- Deflater.cs
- AttributeProviderAttribute.cs
- ValidatingReaderNodeData.cs
- ArrayList.cs
- TextRange.cs
- IdentityReference.cs
- DrawingGroupDrawingContext.cs
- MessageDecoder.cs
- AlphabeticalEnumConverter.cs
- BamlTreeNode.cs
- ListViewItem.cs
- URL.cs
- AsyncOperation.cs
- TransferRequestHandler.cs
- AstTree.cs
- WebPartDisplayModeCollection.cs
- MailWriter.cs
- XmlArrayAttribute.cs
- PowerStatus.cs
- TrueReadOnlyCollection.cs
- StreamGeometry.cs
- AppSettingsExpressionBuilder.cs
- TemplateBindingExtensionConverter.cs
- ipaddressinformationcollection.cs
- FieldAccessException.cs
- UrlAuthFailedErrorFormatter.cs
- RepeaterDataBoundAdapter.cs
- TrustLevel.cs
- _NTAuthentication.cs
- DateTimeOffset.cs
- GifBitmapEncoder.cs
- EventManager.cs
- PageAdapter.cs
- EllipseGeometry.cs
- InheritablePropertyChangeInfo.cs
- DecimalSumAggregationOperator.cs
- EditingCommands.cs
- GridViewRowEventArgs.cs
- TextModifierScope.cs
- HotSpot.cs
- EntityDataSourceDataSelectionPanel.cs
- SQLInt64Storage.cs
- Ray3DHitTestResult.cs
- CompilerErrorCollection.cs
- EntityDataSourceDataSelection.cs
- GroupBox.cs
- SystemWebCachingSectionGroup.cs
- ArrayElementGridEntry.cs
- GridViewAutomationPeer.cs
- DataGridViewRowCollection.cs
- TextBoxAutoCompleteSourceConverter.cs
- DesignerLoader.cs
- _BasicClient.cs
- CodeCatchClause.cs
- SafeArrayTypeMismatchException.cs
- NamespaceQuery.cs
- CreateRefExpr.cs
- ChooseAction.cs
- Rect3D.cs
- WindowsRegion.cs
- SqlTransaction.cs
- ClientCredentialsSecurityTokenManager.cs
- TextRangeEditLists.cs
- MsdtcClusterUtils.cs
- WebPartDescriptionCollection.cs
- DiscoveryOperationContextExtension.cs