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
- ObjectStorage.cs
- DotNetATv1WindowsLogEntryDeserializer.cs
- SecurityElement.cs
- UpdateManifestForBrowserApplication.cs
- SelectionChangedEventArgs.cs
- FixedDocument.cs
- IApplicationTrustManager.cs
- AutomationElementCollection.cs
- SQLInt32.cs
- MailFileEditor.cs
- Calendar.cs
- PeerUnsafeNativeCryptMethods.cs
- ClockGroup.cs
- WorkflowRuntimeServiceElementCollection.cs
- SystemThemeKey.cs
- OdbcConnectionOpen.cs
- TextTreeInsertUndoUnit.cs
- Cursors.cs
- StringSorter.cs
- MemoryStream.cs
- XPathDocumentIterator.cs
- LineProperties.cs
- InvokeProviderWrapper.cs
- MarkedHighlightComponent.cs
- InputLangChangeRequestEvent.cs
- IPGlobalProperties.cs
- ArcSegment.cs
- DebugView.cs
- HierarchicalDataSourceControl.cs
- ColorInterpolationModeValidation.cs
- AuthenticationException.cs
- HMACSHA256.cs
- SystemTcpConnection.cs
- TargetInvocationException.cs
- DataRowCollection.cs
- TimeStampChecker.cs
- RealProxy.cs
- ProfilePropertySettingsCollection.cs
- ValidationErrorInfo.cs
- NativeMethods.cs
- ScriptReference.cs
- ErrorTableItemStyle.cs
- WebPartConnectionsCloseVerb.cs
- RuntimeConfig.cs
- LOSFormatter.cs
- PrivateFontCollection.cs
- X509IssuerSerialKeyIdentifierClause.cs
- Form.cs
- Focus.cs
- IssuanceLicense.cs
- CryptoStream.cs
- NativeMethods.cs
- TextServicesLoader.cs
- ClientRolePrincipal.cs
- RadioButtonAutomationPeer.cs
- MobileControlPersister.cs
- GroupByExpressionRewriter.cs
- SaveWorkflowCommand.cs
- MenuItemStyle.cs
- CodeThrowExceptionStatement.cs
- LinqDataSourceContextData.cs
- EntityDataSourceChangingEventArgs.cs
- SharedStatics.cs
- keycontainerpermission.cs
- TransformerConfigurationWizardBase.cs
- FormatSettings.cs
- MimeFormatExtensions.cs
- ObjectDataSourceChooseMethodsPanel.cs
- EdmItemCollection.OcAssemblyCache.cs
- PenCursorManager.cs
- DataObjectAttribute.cs
- DataGridViewCellValidatingEventArgs.cs
- SpnEndpointIdentityExtension.cs
- DocumentPage.cs
- ITextView.cs
- HitTestWithGeometryDrawingContextWalker.cs
- HandlerBase.cs
- SqlFunctionAttribute.cs
- XpsManager.cs
- CompositeTypefaceMetrics.cs
- WindowsScrollBar.cs
- TextCompositionManager.cs
- DiagnosticsConfiguration.cs
- XmlHierarchyData.cs
- GradientBrush.cs
- AuthenticationServiceManager.cs
- HttpCachePolicy.cs
- TokenizerHelper.cs
- ValidationSummary.cs
- FlowDocumentReaderAutomationPeer.cs
- QilReplaceVisitor.cs
- XmlUrlResolver.cs
- SectionUpdates.cs
- XmlBoundElement.cs
- AsyncPostBackErrorEventArgs.cs
- AdCreatedEventArgs.cs
- InsufficientMemoryException.cs
- DBConnection.cs
- ModuleConfigurationInfo.cs
- CompositeScriptReference.cs