Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 4 / 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 } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextWriter.cs
- TypeDelegator.cs
- webeventbuffer.cs
- OracleConnectionString.cs
- SettingsAttributeDictionary.cs
- MemberHolder.cs
- URLIdentityPermission.cs
- Sql8ExpressionRewriter.cs
- wgx_sdk_version.cs
- ContentDesigner.cs
- TagNameToTypeMapper.cs
- SimpleModelProvider.cs
- ConfigurationProviderException.cs
- Identity.cs
- ManualResetEventSlim.cs
- ThrowHelper.cs
- PointLightBase.cs
- Int16AnimationUsingKeyFrames.cs
- CalendarDesigner.cs
- ElementAtQueryOperator.cs
- IISUnsafeMethods.cs
- TableLayoutPanelCellPosition.cs
- GiveFeedbackEventArgs.cs
- ContractMapping.cs
- TrustManagerMoreInformation.cs
- TypedElement.cs
- DataSourceProvider.cs
- UIPropertyMetadata.cs
- AuthenticationConfig.cs
- GuidConverter.cs
- DrawingContextDrawingContextWalker.cs
- DesignerForm.cs
- RoleManagerEventArgs.cs
- SchemaInfo.cs
- MulticastDelegate.cs
- ImageListStreamer.cs
- VectorAnimation.cs
- PtsHost.cs
- QuaternionConverter.cs
- Message.cs
- WsdlImporterElement.cs
- prefixendpointaddressmessagefiltertable.cs
- CharacterBufferReference.cs
- DataControlImageButton.cs
- StaticDataManager.cs
- InternalSendMessage.cs
- WebDescriptionAttribute.cs
- PackagePartCollection.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- IRCollection.cs
- ObjectDataSourceStatusEventArgs.cs
- ProviderCommandInfoUtils.cs
- ReadOnlyNameValueCollection.cs
- StringWriter.cs
- SchemaSetCompiler.cs
- WebPartEditorApplyVerb.cs
- UIElement3D.cs
- Classification.cs
- BuildManagerHost.cs
- RegisteredExpandoAttribute.cs
- HostedBindingBehavior.cs
- CTreeGenerator.cs
- ElementNotAvailableException.cs
- TextEditorTyping.cs
- MetafileHeaderEmf.cs
- DockEditor.cs
- WebPartConnectionsEventArgs.cs
- TextInfo.cs
- HandlerFactoryCache.cs
- MemberProjectedSlot.cs
- CommandID.cs
- EntityConnectionStringBuilder.cs
- FileDialog_Vista.cs
- QueryStringParameter.cs
- Rules.cs
- _TLSstream.cs
- RequiredAttributeAttribute.cs
- ComponentDispatcherThread.cs
- UrlPath.cs
- UnionCodeGroup.cs
- PreviewPrintController.cs
- TableRowGroup.cs
- UInt16.cs
- GACMembershipCondition.cs
- AdapterUtil.cs
- InputChannelBinder.cs
- Tokenizer.cs
- XmlDomTextWriter.cs
- OrthographicCamera.cs
- TypedTableHandler.cs
- ExpressionList.cs
- CacheMemory.cs
- SpStreamWrapper.cs
- BitmapSource.cs
- DataObject.cs
- FixedSOMPage.cs
- WebDisplayNameAttribute.cs
- AmbientEnvironment.cs
- LockCookie.cs
- XmlSchemaSequence.cs