Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / MembershipSection.cs / 1305376 / 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; /**/ 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; /**/ 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
- HttpCachePolicy.cs
- TextEditorContextMenu.cs
- ToolStrip.cs
- ProfileSettingsCollection.cs
- RegexInterpreter.cs
- BooleanFunctions.cs
- ObjectDataSourceDisposingEventArgs.cs
- ResourceManager.cs
- PersonalizableAttribute.cs
- BoundField.cs
- ConfigsHelper.cs
- RefreshEventArgs.cs
- BeginStoryboard.cs
- ScrollItemProviderWrapper.cs
- unitconverter.cs
- ResetableIterator.cs
- GeneratedCodeAttribute.cs
- SiteMapNode.cs
- MeshGeometry3D.cs
- OracleBinary.cs
- IssuedTokenServiceElement.cs
- ImageCreator.cs
- ToolboxBitmapAttribute.cs
- NavigationProperty.cs
- ListViewItem.cs
- ReadOnlyDataSource.cs
- PropertyTabChangedEvent.cs
- OleAutBinder.cs
- CompoundFileDeflateTransform.cs
- DataRowView.cs
- ModifierKeysConverter.cs
- XmlSchemaAnnotated.cs
- ManagedIStream.cs
- SoapExtension.cs
- PathSegmentCollection.cs
- FixedSOMLineCollection.cs
- PropertyEmitterBase.cs
- DataRowCollection.cs
- ConnectionStringSettingsCollection.cs
- XmlText.cs
- ComplexType.cs
- HatchBrush.cs
- BitmapInitialize.cs
- RequestCacheEntry.cs
- HttpListenerRequest.cs
- FileBasedResourceGroveler.cs
- Int32KeyFrameCollection.cs
- StringReader.cs
- XmlWriterSettings.cs
- ZoneButton.cs
- CompoundFileIOPermission.cs
- PrintingPermission.cs
- Size3DValueSerializer.cs
- SelectionList.cs
- DataControlFieldCell.cs
- FunctionParameter.cs
- ResXDataNode.cs
- Listener.cs
- CurrentChangedEventManager.cs
- RowsCopiedEventArgs.cs
- TextPointerBase.cs
- AppDomain.cs
- TextBlockAutomationPeer.cs
- WebPartTransformer.cs
- XmlEnumAttribute.cs
- DataGridViewSortCompareEventArgs.cs
- mediaclock.cs
- ScrollProviderWrapper.cs
- ConstructorNeedsTagAttribute.cs
- RemotingConfigParser.cs
- WindowVisualStateTracker.cs
- PersistenceTypeAttribute.cs
- AttributeData.cs
- ScalarConstant.cs
- RootBuilder.cs
- EnumConverter.cs
- Attributes.cs
- InteropAutomationProvider.cs
- ScrollableControl.cs
- AddInPipelineAttributes.cs
- WindowsRichEditRange.cs
- ChangePassword.cs
- SQLMoney.cs
- DataContractSerializerOperationGenerator.cs
- SafeSecurityHandles.cs
- NestedContainer.cs
- TextStore.cs
- EasingKeyFrames.cs
- _KerberosClient.cs
- MessageSecurityTokenVersion.cs
- RijndaelManagedTransform.cs
- UniqueEventHelper.cs
- PropertyValueChangedEvent.cs
- FontUnit.cs
- Rect3D.cs
- SchemaMapping.cs
- AnonymousIdentificationModule.cs
- TextLineBreak.cs
- SessionPageStateSection.cs
- DecoderReplacementFallback.cs