Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 1 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GenerateHelper.cs
- CapabilitiesAssignment.cs
- EditorZoneBase.cs
- MobileContainerDesigner.cs
- WebPartTransformerAttribute.cs
- RelationshipType.cs
- Listbox.cs
- HashSet.cs
- GcSettings.cs
- Comparer.cs
- Pen.cs
- PropertyTabChangedEvent.cs
- WorkflowRuntimeElement.cs
- IIS7WorkerRequest.cs
- Viewport3DVisual.cs
- XmlEntityReference.cs
- CorrelationManager.cs
- ContextMenu.cs
- WebConfigurationFileMap.cs
- XmlSchemaRedefine.cs
- EntityException.cs
- StorageSetMapping.cs
- _TransmitFileOverlappedAsyncResult.cs
- CryptoProvider.cs
- TreeNode.cs
- XmlnsDefinitionAttribute.cs
- ByteStorage.cs
- XPathNodeList.cs
- HttpStreams.cs
- DiscoveryDocumentSerializer.cs
- GenericEnumerator.cs
- RequestNavigateEventArgs.cs
- DrawingGroup.cs
- OperandQuery.cs
- HyperLink.cs
- DrawingContext.cs
- DesigntimeLicenseContext.cs
- XmlLoader.cs
- NegotiationTokenAuthenticatorState.cs
- NodeLabelEditEvent.cs
- tooltip.cs
- CompModHelpers.cs
- XsltLibrary.cs
- NativeRecognizer.cs
- EntitySetBaseCollection.cs
- SystemMulticastIPAddressInformation.cs
- RootProfilePropertySettingsCollection.cs
- ToolStripTextBox.cs
- MachineKeyConverter.cs
- listviewsubitemcollectioneditor.cs
- AlphaSortedEnumConverter.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- XmlStringTable.cs
- ControlLocalizer.cs
- QilReference.cs
- DataServices.cs
- PasswordBoxAutomationPeer.cs
- SupportsEventValidationAttribute.cs
- ContentPresenter.cs
- dtdvalidator.cs
- TextEditorSpelling.cs
- ExtensionElementCollection.cs
- WinEventHandler.cs
- RewritingProcessor.cs
- Asn1Utilities.cs
- WebBrowserHelper.cs
- ParsedAttributeCollection.cs
- Attributes.cs
- BaseValidator.cs
- DataObjectMethodAttribute.cs
- MetafileEditor.cs
- XmlAtomErrorReader.cs
- WindowsRichEditRange.cs
- PeerNearMe.cs
- DataStreams.cs
- HttpCacheParams.cs
- ButtonAutomationPeer.cs
- DataObjectSettingDataEventArgs.cs
- DBSchemaRow.cs
- KeySplineConverter.cs
- RepeatInfo.cs
- DependencyPropertyDescriptor.cs
- WizardPanel.cs
- CustomSignedXml.cs
- RightsController.cs
- SQLByteStorage.cs
- BitmapDownload.cs
- ApplicationSecurityManager.cs
- DataGridViewImageColumn.cs
- ListComponentEditor.cs
- Int32Animation.cs
- OdbcParameterCollection.cs
- CommonGetThemePartSize.cs
- ActivityDesignerAccessibleObject.cs
- BevelBitmapEffect.cs
- Win32MouseDevice.cs
- Parser.cs
- SqlLiftIndependentRowExpressions.cs
- CompressEmulationStream.cs
- MultilineStringConverter.cs