Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / ProfileGroupSettings.cs / 5 / 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
- SystemDropShadowChrome.cs
- XmlCharacterData.cs
- StrokeCollection2.cs
- FixedPosition.cs
- HtmlTableCellCollection.cs
- AudioStateChangedEventArgs.cs
- NameValueFileSectionHandler.cs
- Invariant.cs
- EntityCommandDefinition.cs
- EventsTab.cs
- ClientCultureInfo.cs
- AnchoredBlock.cs
- CursorConverter.cs
- TabControl.cs
- NumericUpDownAccelerationCollection.cs
- DetailsViewPageEventArgs.cs
- TemplateDefinition.cs
- LineGeometry.cs
- Int64Storage.cs
- ComponentFactoryHelpers.cs
- ParserHooks.cs
- ValuePatternIdentifiers.cs
- CodeAssignStatement.cs
- OperationInvokerTrace.cs
- EventListenerClientSide.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- IsolatedStorageFileStream.cs
- DebugTrace.cs
- LogReserveAndAppendState.cs
- SymmetricAlgorithm.cs
- StateMachine.cs
- AncillaryOps.cs
- BaseTemplateBuildProvider.cs
- BitVector32.cs
- PageTextBox.cs
- BufferedConnection.cs
- WebZone.cs
- Drawing.cs
- ClientTargetSection.cs
- GlyphShapingProperties.cs
- MobileTextWriter.cs
- TypeLoadException.cs
- DetailsViewPageEventArgs.cs
- UseAttributeSetsAction.cs
- MappingSource.cs
- ChtmlTextWriter.cs
- SafeFileMappingHandle.cs
- DrawingContextFlattener.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- Duration.cs
- ILGenerator.cs
- IERequestCache.cs
- TemplateControlParser.cs
- BinaryMethodMessage.cs
- FixedSOMTextRun.cs
- View.cs
- ClockGroup.cs
- UpdateCommand.cs
- StateRuntime.cs
- OpenFileDialog.cs
- ImageField.cs
- Stack.cs
- InvokeHandlers.cs
- CursorEditor.cs
- DllNotFoundException.cs
- RemotingSurrogateSelector.cs
- UIElement.cs
- LongValidator.cs
- ApplicationId.cs
- OracleSqlParser.cs
- CodeVariableDeclarationStatement.cs
- SafeArrayTypeMismatchException.cs
- CornerRadiusConverter.cs
- SystemWebSectionGroup.cs
- HostExecutionContextManager.cs
- QilXmlReader.cs
- DataGridToolTip.cs
- MimePart.cs
- ApplicationBuildProvider.cs
- TrustLevelCollection.cs
- XmlHierarchicalEnumerable.cs
- SafeMemoryMappedFileHandle.cs
- DesignTimeTemplateParser.cs
- ArithmeticException.cs
- FunctionImportElement.cs
- HttpAsyncResult.cs
- XmlQueryStaticData.cs
- ListViewUpdatedEventArgs.cs
- FilterableAttribute.cs
- TemplateKeyConverter.cs
- DropShadowBitmapEffect.cs
- Encoder.cs
- ProjectionCamera.cs
- MaxMessageSizeStream.cs
- DataBindingsDialog.cs
- Vector3DAnimationUsingKeyFrames.cs
- NullReferenceException.cs
- InvalidTimeZoneException.cs
- DataGridViewColumnConverter.cs
- AutomationPatternInfo.cs