Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / MembershipSection.cs / 2 / 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 }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConstraintConverter.cs
- TimeZone.cs
- FormViewPageEventArgs.cs
- ZoneIdentityPermission.cs
- BamlRecordWriter.cs
- DataPagerField.cs
- XmlCodeExporter.cs
- PrintEvent.cs
- HtmlShimManager.cs
- SequenceNumber.cs
- SQLConvert.cs
- XmlElement.cs
- UseAttributeSetsAction.cs
- XmlSecureResolver.cs
- TraceRecord.cs
- CachedPathData.cs
- PathFigure.cs
- DataFormat.cs
- StyleConverter.cs
- DataServiceStreamProviderWrapper.cs
- MailMessage.cs
- DynamicDataResources.Designer.cs
- HttpRuntimeSection.cs
- CqlLexer.cs
- XPathSelfQuery.cs
- X500Name.cs
- RouteValueDictionary.cs
- Parameter.cs
- UInt16.cs
- SqlDataSourceRefreshSchemaForm.cs
- CompiledQuery.cs
- ReaderWriterLock.cs
- mansign.cs
- TypeDependencyAttribute.cs
- SafeHandles.cs
- SettingsPropertyIsReadOnlyException.cs
- ComponentResourceKey.cs
- ContainerUIElement3D.cs
- BuiltInExpr.cs
- PermissionSetTriple.cs
- MessageQuerySet.cs
- ToolboxDataAttribute.cs
- PublisherMembershipCondition.cs
- webeventbuffer.cs
- LookupNode.cs
- TransformBlockRequest.cs
- SystemException.cs
- IncrementalCompileAnalyzer.cs
- RijndaelManagedTransform.cs
- StaticContext.cs
- RequiredAttributeAttribute.cs
- CodeDomLocalizationProvider.cs
- QuaternionKeyFrameCollection.cs
- List.cs
- FormViewRow.cs
- BuildResult.cs
- IRCollection.cs
- DigitShape.cs
- Line.cs
- CodeDelegateInvokeExpression.cs
- FragmentNavigationEventArgs.cs
- WebControl.cs
- MatrixTransform3D.cs
- ValidatingPropertiesEventArgs.cs
- ImmComposition.cs
- XmlElement.cs
- StringComparer.cs
- ExternalFile.cs
- ContentPropertyAttribute.cs
- WebSysDisplayNameAttribute.cs
- XmlElementList.cs
- FactoryGenerator.cs
- DbCommandDefinition.cs
- HttpModule.cs
- CodeValidator.cs
- DataGridViewComboBoxColumn.cs
- BaseTemplatedMobileComponentEditor.cs
- ConsumerConnectionPoint.cs
- XPathDocumentIterator.cs
- TableLayoutSettings.cs
- XmlIgnoreAttribute.cs
- CfgArc.cs
- Attributes.cs
- InlinedAggregationOperator.cs
- GifBitmapDecoder.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- BamlVersionHeader.cs
- CodeCommentStatement.cs
- StructuredTypeInfo.cs
- ChangeTracker.cs
- FaultReasonText.cs
- CompilationSection.cs
- ApplyTemplatesAction.cs
- BamlLocalizableResourceKey.cs
- ValidatorCompatibilityHelper.cs
- Delegate.cs
- HandlerFactoryCache.cs
- SimpleTextLine.cs
- PartitionResolver.cs
- CorrelationValidator.cs