System.Web
2.0.0.0
System.Configuration.ConfigurationSection
The class provides a way to programmatically access and modify the membership section in a configuration file.
Defines configuration settings to support the infrastructure for configuring and managing membership details. This class cannot be inherited.
Constructor
The constructor is not intended to be used directly from your code. It is called by the ASP.NET configuration system. You obtain an instance of the class by using the method.
Initializes a new instance of the class.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("defaultProvider", DefaultValue="AspNetSqlMembershipProvider")
System.Configuration.StringValidator(MinLength=1)
System.String
To be added.
The must match a named value in the providers subsection of the membership section of the configuration file. An empty string ("") is not a valid value for the property.
Gets or sets the name of the default provider that is used to manage roles.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("hashAlgorithmType", DefaultValue="")
System.String
To be added.
At run time, the membership system binds to the appropriate hash algorithm type, and then uses this type when encrypting membership information. If the property is not set, the membership system defaults to the property within the class.
Gets or sets the type of encryption that is used for sensitive membership information.
2.0.0.0
Property
System.Configuration.ConfigurationPropertyCollection
To be added.
To be added.
To be added.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("providers")
System.Configuration.ProviderSettingsCollection
To be added.
Membership providers are components that provide access to the membership for a site. You can specify membership providers in the providers subsection of the membership section of the configuration file.
The property contains the name of the provider that is used by default.
Gets a object of objects.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("userIsOnlineTimeWindow", DefaultValue="00:15:00")
System.Configuration.TimeSpanValidator(MinValueString="00:01:00")
System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanMinutesConverter))
System.TimeSpan
To be added.
The value for the property is calculated by comparing the current time minus the property with the value for the user.
Gets or sets the length of time, in minutes, before a user is no longer considered to be online.
2.0.0.0