Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- WebResourceUtil.cs
- DataGridViewImageColumn.cs
- Decimal.cs
- SynchronizationContext.cs
- CommandDevice.cs
- DataBindingList.cs
- TreeNodeCollection.cs
- PlatformCulture.cs
- SiteMapProvider.cs
- CellCreator.cs
- WhitespaceRuleReader.cs
- DbConnectionPoolGroupProviderInfo.cs
- ComProxy.cs
- BufferAllocator.cs
- PropertyMap.cs
- XmlAutoDetectWriter.cs
- AdCreatedEventArgs.cs
- PromptStyle.cs
- CheckBoxBaseAdapter.cs
- Package.cs
- Assembly.cs
- EncoderExceptionFallback.cs
- SqlDataSourceConfigureFilterForm.cs
- BitmapEffect.cs
- DocumentXmlWriter.cs
- SafeTokenHandle.cs
- securitycriticaldata.cs
- WebPartEventArgs.cs
- SqlIdentifier.cs
- AQNBuilder.cs
- OracleTransaction.cs
- SqlConnectionManager.cs
- GlyphRun.cs
- Normalization.cs
- BigInt.cs
- HtmlInputCheckBox.cs
- TextBlockAutomationPeer.cs
- DataShape.cs
- TypeRefElement.cs
- ActivityDesignerHighlighter.cs
- TextParagraphProperties.cs
- DifferencingCollection.cs
- FileLogRecordEnumerator.cs
- ResetableIterator.cs
- SQLConvert.cs
- OciEnlistContext.cs
- tibetanshape.cs
- PointCollectionConverter.cs
- IPEndPoint.cs
- Rfc2898DeriveBytes.cs
- ObjectSecurity.cs
- WebPartConnectionsCancelVerb.cs
- Substitution.cs
- SizeAnimationUsingKeyFrames.cs
- DataProviderNameConverter.cs
- AddInDeploymentState.cs
- OverlappedContext.cs
- EdmValidator.cs
- ClientRuntimeConfig.cs
- GridEntryCollection.cs
- SqlXml.cs
- NetStream.cs
- MenuDesigner.cs
- EmissiveMaterial.cs
- SortedList.cs
- CreateParams.cs
- MenuItemBindingCollection.cs
- SimpleColumnProvider.cs
- ExpressionPrefixAttribute.cs
- QualifiedCellIdBoolean.cs
- InkCanvasSelectionAdorner.cs
- EntitySetDataBindingList.cs
- FollowerQueueCreator.cs
- RSAOAEPKeyExchangeDeformatter.cs
- InternalSafeNativeMethods.cs
- InsufficientMemoryException.cs
- Int32CollectionValueSerializer.cs
- PropertyPath.cs
- ParserOptions.cs
- ByteAnimationBase.cs
- RangeExpression.cs
- HMACSHA384.cs
- ScaleTransform3D.cs
- Int16Converter.cs
- MouseWheelEventArgs.cs
- DbQueryCommandTree.cs
- ToolStripItemDesigner.cs
- KeysConverter.cs
- ModelUIElement3D.cs
- Verify.cs
- ListBase.cs
- WebRequestModuleElement.cs
- DNS.cs
- HttpCapabilitiesEvaluator.cs
- AccessDataSource.cs
- ConnectionPoolRegistry.cs
- CustomLineCap.cs
- WebPartsSection.cs
- PerformanceCounterPermission.cs
- InputMethod.cs