Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / MembershipSection.cs / 1 / MembershipSection.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.Globalization; using System.IO; using System.Text; using System.ComponentModel; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class MembershipSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propProviders; private static readonly ConfigurationProperty _propDefaultProvider; private static readonly ConfigurationProperty _propUserIsOnlineTimeWindow; private static readonly ConfigurationProperty _propHashAlgorithmType; static MembershipSection() { // Property initialization _propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); _propDefaultProvider = new ConfigurationProperty("defaultProvider", typeof(string), "AspNetSqlMembershipProvider", null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.None); _propUserIsOnlineTimeWindow = new ConfigurationProperty("userIsOnlineTimeWindow", typeof(TimeSpan), TimeSpan.FromMinutes(15.0), StdValidatorsAndConverters.TimeSpanMinutesConverter, new TimeSpanValidator(TimeSpan.FromMinutes(1), TimeSpan.MaxValue), ConfigurationPropertyOptions.None); _propHashAlgorithmType = new ConfigurationProperty("hashAlgorithmType", typeof(string), string.Empty, ConfigurationPropertyOptions.None); _properties = new ConfigurationPropertyCollection(); _properties.Add(_propProviders); _properties.Add(_propDefaultProvider); _properties.Add(_propUserIsOnlineTimeWindow); _properties.Add(_propHashAlgorithmType); } public MembershipSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("providers")] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } [ConfigurationProperty("defaultProvider", DefaultValue = "AspNetSqlMembershipProvider")] [StringValidator(MinLength = 1)] public string DefaultProvider { get { return (string)base[_propDefaultProvider]; } set { base[_propDefaultProvider] = value; } } [ConfigurationProperty("hashAlgorithmType", DefaultValue = "")] public string HashAlgorithmType { get { return (string)base[_propHashAlgorithmType]; } set { base[_propHashAlgorithmType] = value; } } internal void ThrowHashAlgorithmException() { throw new ConfigurationErrorsException(SR.GetString(SR.Invalid_hash_algorithm_type, HashAlgorithmType), ElementInformation.Properties["hashAlgorithmType"].Source, ElementInformation.Properties["hashAlgorithmType"].LineNumber); } [ConfigurationProperty("userIsOnlineTimeWindow", DefaultValue = "00:15:00")] [TypeConverter(typeof(TimeSpanMinutesConverter))] [TimeSpanValidator(MinValueString = "00:01:00", MaxValueString = TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan UserIsOnlineTimeWindow { get { return (TimeSpan)base[_propUserIsOnlineTimeWindow]; } set { base[_propUserIsOnlineTimeWindow] = value; } } } // class MembershipSection } // 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.Globalization; using System.IO; using System.Text; using System.ComponentModel; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class MembershipSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propProviders; private static readonly ConfigurationProperty _propDefaultProvider; private static readonly ConfigurationProperty _propUserIsOnlineTimeWindow; private static readonly ConfigurationProperty _propHashAlgorithmType; static MembershipSection() { // Property initialization _propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); _propDefaultProvider = new ConfigurationProperty("defaultProvider", typeof(string), "AspNetSqlMembershipProvider", null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.None); _propUserIsOnlineTimeWindow = new ConfigurationProperty("userIsOnlineTimeWindow", typeof(TimeSpan), TimeSpan.FromMinutes(15.0), StdValidatorsAndConverters.TimeSpanMinutesConverter, new TimeSpanValidator(TimeSpan.FromMinutes(1), TimeSpan.MaxValue), ConfigurationPropertyOptions.None); _propHashAlgorithmType = new ConfigurationProperty("hashAlgorithmType", typeof(string), string.Empty, ConfigurationPropertyOptions.None); _properties = new ConfigurationPropertyCollection(); _properties.Add(_propProviders); _properties.Add(_propDefaultProvider); _properties.Add(_propUserIsOnlineTimeWindow); _properties.Add(_propHashAlgorithmType); } public MembershipSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("providers")] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } [ConfigurationProperty("defaultProvider", DefaultValue = "AspNetSqlMembershipProvider")] [StringValidator(MinLength = 1)] public string DefaultProvider { get { return (string)base[_propDefaultProvider]; } set { base[_propDefaultProvider] = value; } } [ConfigurationProperty("hashAlgorithmType", DefaultValue = "")] public string HashAlgorithmType { get { return (string)base[_propHashAlgorithmType]; } set { base[_propHashAlgorithmType] = value; } } internal void ThrowHashAlgorithmException() { throw new ConfigurationErrorsException(SR.GetString(SR.Invalid_hash_algorithm_type, HashAlgorithmType), ElementInformation.Properties["hashAlgorithmType"].Source, ElementInformation.Properties["hashAlgorithmType"].LineNumber); } [ConfigurationProperty("userIsOnlineTimeWindow", DefaultValue = "00:15:00")] [TypeConverter(typeof(TimeSpanMinutesConverter))] [TimeSpanValidator(MinValueString = "00:01:00", MaxValueString = TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan UserIsOnlineTimeWindow { get { return (TimeSpan)base[_propUserIsOnlineTimeWindow]; } set { base[_propUserIsOnlineTimeWindow] = value; } } } // class MembershipSection } // 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
- GACIdentityPermission.cs
- Configuration.cs
- OutOfProcStateClientManager.cs
- BackgroundWorker.cs
- FormsAuthenticationCredentials.cs
- DataControlFieldCell.cs
- IndexingContentUnit.cs
- MarkupExtensionParser.cs
- IndexedEnumerable.cs
- TypeValidationEventArgs.cs
- SafeEventHandle.cs
- XmlSchemaSet.cs
- ClientSettings.cs
- ModelVisual3D.cs
- CodePageEncoding.cs
- SetterBase.cs
- TdsParserSessionPool.cs
- PrimitiveSchema.cs
- DataRowChangeEvent.cs
- SqlTriggerAttribute.cs
- CoTaskMemSafeHandle.cs
- MobileUITypeEditor.cs
- SqlConnection.cs
- SqlDataSourceAdvancedOptionsForm.cs
- PackWebRequest.cs
- DateTimeFormatInfo.cs
- DataRecordInternal.cs
- AliasExpr.cs
- WSUtilitySpecificationVersion.cs
- ListControlBoundActionList.cs
- PolyBezierSegment.cs
- RegexMatchCollection.cs
- Compiler.cs
- AttributeCollection.cs
- Partitioner.cs
- NamespaceExpr.cs
- TextEndOfSegment.cs
- SerialReceived.cs
- NotFiniteNumberException.cs
- SelectionEditingBehavior.cs
- AnnotationResource.cs
- WindowsToolbarAsMenu.cs
- HotCommands.cs
- WebPartCancelEventArgs.cs
- connectionpool.cs
- NumericUpDownAcceleration.cs
- GPPOINT.cs
- AccessibleObject.cs
- HttpPostClientProtocol.cs
- ExpandButtonVisibilityConverter.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- MethodSet.cs
- ResourceManager.cs
- EncoderBestFitFallback.cs
- TextEditorCharacters.cs
- PassportAuthenticationEventArgs.cs
- shaperfactoryquerycacheentry.cs
- PassportIdentity.cs
- VectorKeyFrameCollection.cs
- CharEntityEncoderFallback.cs
- SignerInfo.cs
- XPathBuilder.cs
- Matrix.cs
- XamlParser.cs
- SafeNativeMemoryHandle.cs
- RegionIterator.cs
- ObjectDataSource.cs
- SliderAutomationPeer.cs
- ControlEvent.cs
- sqlstateclientmanager.cs
- BaseAddressPrefixFilterElement.cs
- ResourceDescriptionAttribute.cs
- OdbcConnectionString.cs
- TreeNode.cs
- IndependentlyAnimatedPropertyMetadata.cs
- ExtractedStateEntry.cs
- XPathArrayIterator.cs
- TagPrefixAttribute.cs
- HandlerFactoryWrapper.cs
- NodeCounter.cs
- ProtocolsSection.cs
- UIElement3DAutomationPeer.cs
- AttributeProviderAttribute.cs
- DataKey.cs
- ThumbButtonInfoCollection.cs
- RuleSetDialog.cs
- InputScopeManager.cs
- ExtensionWindowHeader.cs
- SymbolEqualComparer.cs
- GridLength.cs
- SpecularMaterial.cs
- CallbackHandler.cs
- ToolStripDropDown.cs
- ListViewGroup.cs
- RoutedEventArgs.cs
- FacetDescriptionElement.cs
- QilLoop.cs
- metadatamappinghashervisitor.cs
- FieldAccessException.cs
- Group.cs