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
- StringConverter.cs
- ResourceDefaultValueAttribute.cs
- SqlDataSourceCommandEventArgs.cs
- ByeOperation11AsyncResult.cs
- WmlTextViewAdapter.cs
- TextParagraphProperties.cs
- HttpCookieCollection.cs
- DefaultPrintController.cs
- WinFormsSpinner.cs
- InvalidCastException.cs
- PolyLineSegmentFigureLogic.cs
- coordinatorfactory.cs
- Authorization.cs
- ScriptDescriptor.cs
- MemberHolder.cs
- OleDbRowUpdatedEvent.cs
- PkcsMisc.cs
- WeakHashtable.cs
- DataGridViewCellValidatingEventArgs.cs
- SQLByteStorage.cs
- SectionRecord.cs
- ToolStripDropDownClosedEventArgs.cs
- PackagePartCollection.cs
- JsonEncodingStreamWrapper.cs
- FileSystemInfo.cs
- IgnoreSectionHandler.cs
- UrlAuthFailedErrorFormatter.cs
- MemberRelationshipService.cs
- EventLogPermissionAttribute.cs
- TableLayout.cs
- LineServicesCallbacks.cs
- JournalNavigationScope.cs
- KeyManager.cs
- NodeInfo.cs
- _AcceptOverlappedAsyncResult.cs
- JulianCalendar.cs
- ZipQueryOperator.cs
- DataServiceKeyAttribute.cs
- IsolatedStorageFileStream.cs
- StateMachineWorkflowInstance.cs
- MetadataPropertyCollection.cs
- EntityException.cs
- AffineTransform3D.cs
- BuildResultCache.cs
- MILUtilities.cs
- IdentityHolder.cs
- System.Data.OracleClient_BID.cs
- SynchronizationContext.cs
- COAUTHINFO.cs
- GroupItemAutomationPeer.cs
- ConfigurationConverterBase.cs
- SafeFileHandle.cs
- QuaternionKeyFrameCollection.cs
- JournalEntry.cs
- DataSourceSelectArguments.cs
- DataKeyCollection.cs
- COM2ExtendedBrowsingHandler.cs
- EventLogEntry.cs
- StrokeNode.cs
- SchemaTypeEmitter.cs
- ServiceHandle.cs
- MultiView.cs
- ScriptResourceInfo.cs
- WebBaseEventKeyComparer.cs
- PieceDirectory.cs
- DataControlImageButton.cs
- DeferredRunTextReference.cs
- StateRuntime.cs
- Renderer.cs
- PathFigureCollection.cs
- AtlasWeb.Designer.cs
- IndexerNameAttribute.cs
- OpenTypeCommon.cs
- ClientConfigurationSystem.cs
- HttpServerVarsCollection.cs
- TrustManager.cs
- FileResponseElement.cs
- SqlBulkCopyColumnMapping.cs
- SafeProcessHandle.cs
- CatalogPart.cs
- ObjectHelper.cs
- WeakReferenceList.cs
- SecurityRuntime.cs
- SuppressMessageAttribute.cs
- ServiceHostingEnvironmentSection.cs
- WindowsStatic.cs
- StorageModelBuildProvider.cs
- ConfigDefinitionUpdates.cs
- VectorAnimationUsingKeyFrames.cs
- NumericUpDownAccelerationCollection.cs
- FunctionNode.cs
- ContentFileHelper.cs
- UnicastIPAddressInformationCollection.cs
- PolicyException.cs
- TextMessageEncoder.cs
- LinkDescriptor.cs
- TextFragmentEngine.cs
- SessionStateUtil.cs
- UidManager.cs
- InheritedPropertyChangedEventArgs.cs