Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 1305376 / 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; 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
- BinaryNode.cs
- ProfileSection.cs
- IpcClientChannel.cs
- TableParagraph.cs
- RegexTypeEditor.cs
- TargetFrameworkUtil.cs
- ObjectQuery.cs
- Hyperlink.cs
- CertificateReferenceElement.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SqlRewriteScalarSubqueries.cs
- RubberbandSelector.cs
- EdgeProfileValidation.cs
- FileDialog.cs
- LineGeometry.cs
- LineProperties.cs
- MenuRenderer.cs
- PerformanceCountersElement.cs
- AsyncCompletedEventArgs.cs
- TemplateControlBuildProvider.cs
- XmlElementAttribute.cs
- WebServiceHandler.cs
- ConnectionPoolRegistry.cs
- SystemSounds.cs
- AutoCompleteStringCollection.cs
- CollectionView.cs
- LinqDataSourceView.cs
- DecimalStorage.cs
- XslException.cs
- ApplicationSecurityManager.cs
- EventLogWatcher.cs
- DbLambda.cs
- RulePatternOps.cs
- Facet.cs
- ThreadStartException.cs
- WorkflowDispatchContext.cs
- TreeNode.cs
- FileRecordSequence.cs
- XdrBuilder.cs
- GuidConverter.cs
- XPathParser.cs
- MemberAssignmentAnalysis.cs
- TraceEventCache.cs
- WmpBitmapDecoder.cs
- EventLogQuery.cs
- OdbcError.cs
- SqlWorkflowInstanceStore.cs
- InputProcessorProfiles.cs
- DataViewManagerListItemTypeDescriptor.cs
- TraceRecord.cs
- AttributeData.cs
- ConfigXmlText.cs
- CounterSetInstanceCounterDataSet.cs
- MissingMemberException.cs
- TableLayoutStyleCollection.cs
- RectangleGeometry.cs
- FlowLayout.cs
- HierarchicalDataBoundControlAdapter.cs
- CatalogPartChrome.cs
- FormatException.cs
- ClientBuildManagerCallback.cs
- DriveNotFoundException.cs
- XmlSchemaCompilationSettings.cs
- EventEntry.cs
- HttpCookiesSection.cs
- EUCJPEncoding.cs
- LocalIdKeyIdentifierClause.cs
- FlowNode.cs
- MailDefinitionBodyFileNameEditor.cs
- BoundingRectTracker.cs
- ScrollBar.cs
- uribuilder.cs
- SingleStorage.cs
- WebPartDisplayMode.cs
- ActiveXSite.cs
- TransformerConfigurationWizardBase.cs
- DataGridViewCellFormattingEventArgs.cs
- BitmapFrameEncode.cs
- DataObjectPastingEventArgs.cs
- NetCodeGroup.cs
- RoleGroup.cs
- StaticFileHandler.cs
- DoubleLinkList.cs
- Version.cs
- CommandBindingCollection.cs
- RelatedImageListAttribute.cs
- TabItem.cs
- CodeMethodInvokeExpression.cs
- CrossSiteScriptingValidation.cs
- SafeCryptHandles.cs
- ToolboxItemAttribute.cs
- PixelFormatConverter.cs
- VBIdentifierNameEditor.cs
- Matrix.cs
- SchemaLookupTable.cs
- ScrollChrome.cs
- MiniLockedBorderGlyph.cs
- ListSortDescriptionCollection.cs
- Figure.cs
- NonVisualControlAttribute.cs