Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ProfileSection.cs / 3 / ProfileSection.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 ProfileSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propDefaultProvider = new ConfigurationProperty("defaultProvider", typeof(string), "AspNetSqlProfileProvider", null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propProfile = new ConfigurationProperty("properties", typeof(RootProfilePropertySettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); private static readonly ConfigurationProperty _propInherits = new ConfigurationProperty("inherits", typeof(string), String.Empty, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propAutomaticSaveEnabled = new ConfigurationProperty("automaticSaveEnabled", typeof(bool), true, ConfigurationPropertyOptions.None); static ProfileSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propEnabled); _properties.Add(_propDefaultProvider); _properties.Add(_propProviders); _properties.Add(_propProfile); _properties.Add(_propInherits); _properties.Add(_propAutomaticSaveEnabled); } private long _recompilationHash; private bool _recompilationHashCached; internal long RecompilationHash { get { if (!_recompilationHashCached) { _recompilationHash = CalculateHash(); _recompilationHashCached = true; } return _recompilationHash; } } private long CalculateHash() { HashCodeCombiner hashCombiner = new HashCodeCombiner(); CalculateProfilePropertySettingsHash(PropertySettings, hashCombiner); if (PropertySettings != null) { foreach (ProfileGroupSettings pgs in PropertySettings.GroupSettings) { hashCombiner.AddObject(pgs.Name); CalculateProfilePropertySettingsHash(pgs.PropertySettings, hashCombiner); } } return hashCombiner.CombinedHash; } private void CalculateProfilePropertySettingsHash( ProfilePropertySettingsCollection settings, HashCodeCombiner hashCombiner) { foreach (ProfilePropertySettings pps in settings) { hashCombiner.AddObject(pps.Name); hashCombiner.AddObject(pps.Type); } } public ProfileSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("automaticSaveEnabled", DefaultValue = true)] public bool AutomaticSaveEnabled { get { return (bool)base[_propAutomaticSaveEnabled]; } set { base[_propAutomaticSaveEnabled] = value; } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("defaultProvider", DefaultValue = "AspNetSqlProfileProvider")] [StringValidator(MinLength = 1)] public string DefaultProvider { get { return (string)base[_propDefaultProvider]; } set { base[_propDefaultProvider] = value; } } [ConfigurationProperty("inherits", DefaultValue = "")] public string Inherits { get { return (string)base[_propInherits]; } set { base[_propInherits] = value; } } [ConfigurationProperty("providers")] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } // not exposed to the API [ConfigurationProperty("properties")] public RootProfilePropertySettingsCollection PropertySettings { get { return (RootProfilePropertySettingsCollection)base[_propProfile]; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StructuredTypeInfo.cs
- ObjectStateManager.cs
- DataGridTable.cs
- shaperfactoryquerycachekey.cs
- LoadRetryHandler.cs
- DesignTimeVisibleAttribute.cs
- AstTree.cs
- Brush.cs
- BindingList.cs
- StreamGeometry.cs
- CodeIdentifier.cs
- PublisherMembershipCondition.cs
- keycontainerpermission.cs
- TrackingServices.cs
- NetworkInterface.cs
- RemoteWebConfigurationHost.cs
- ElapsedEventArgs.cs
- ToggleButton.cs
- diagnosticsswitches.cs
- MenuEventArgs.cs
- DesignerActionUI.cs
- XamlSerializationHelper.cs
- ReachDocumentPageSerializer.cs
- Size.cs
- WmlFormAdapter.cs
- PersonalizationDictionary.cs
- IBuiltInEvidence.cs
- XmlEncoding.cs
- SharedPersonalizationStateInfo.cs
- SmtpReplyReader.cs
- Classification.cs
- CultureSpecificStringDictionary.cs
- LinkTarget.cs
- NativeMethods.cs
- ObjectKeyFrameCollection.cs
- SiteMapHierarchicalDataSourceView.cs
- Ops.cs
- ProgressBarHighlightConverter.cs
- SelectionChangedEventArgs.cs
- RootDesignerSerializerAttribute.cs
- ComponentEditorForm.cs
- ReadWriteObjectLock.cs
- PenLineJoinValidation.cs
- TextCharacters.cs
- XmlSchemaCollection.cs
- BigInt.cs
- WebHttpBehavior.cs
- DbConnectionPoolGroup.cs
- ImageMap.cs
- ExpressionBinding.cs
- SmtpClient.cs
- ExpandedWrapper.cs
- MD5.cs
- SiteOfOriginContainer.cs
- MailMessage.cs
- SizeValueSerializer.cs
- ScriptIgnoreAttribute.cs
- Graph.cs
- SortAction.cs
- Substitution.cs
- ArrayList.cs
- SubMenuStyle.cs
- AesCryptoServiceProvider.cs
- FunctionDetailsReader.cs
- ValidatorCollection.cs
- InheritablePropertyChangeInfo.cs
- SettingsPropertyValue.cs
- SqlClientPermission.cs
- ExtensionQuery.cs
- XamlFigureLengthSerializer.cs
- DPCustomTypeDescriptor.cs
- TreeViewAutomationPeer.cs
- WorkItem.cs
- TimeStampChecker.cs
- InvalidMessageContractException.cs
- SeverityFilter.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ServiceMetadataPublishingElement.cs
- QilXmlWriter.cs
- BitmapVisualManager.cs
- RtfNavigator.cs
- TemplateAction.cs
- ConnectionStringsExpressionBuilder.cs
- ValueTypeIndexerReference.cs
- Shape.cs
- DataServiceHostFactory.cs
- WriteableBitmap.cs
- designeractionlistschangedeventargs.cs
- TextBreakpoint.cs
- WindowsUpDown.cs
- ScrollBarAutomationPeer.cs
- SmiContext.cs
- WmfPlaceableFileHeader.cs
- ActivityDesignerLayoutSerializers.cs
- KeyNotFoundException.cs
- Encoding.cs
- MdImport.cs
- ObjectTypeMapping.cs
- ClientCultureInfo.cs
- Point4D.cs