FormsAuthentication.EnableFormsAuthentication(NameValueCollection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enables forms authentication.
public:
static void EnableFormsAuthentication(System::Collections::Specialized::NameValueCollection ^ configurationData);
public static void EnableFormsAuthentication (System.Collections.Specialized.NameValueCollection configurationData);
static member EnableFormsAuthentication : System.Collections.Specialized.NameValueCollection -> unit
Public Shared Sub EnableFormsAuthentication (configurationData As NameValueCollection)
Parameters
- configurationData
- NameValueCollection
A name-value collection that contains values for "defaultUrl" and/or "loginUrl". The parameter can be null if there are no values for the default URL or the login URL.
Exceptions
The application is not in the pre-start initialization phase.
Remarks
If the DefaultUrl property is null
, that property is set to the default URL value from the configurationData
parameter. If the LoginUrl property is null
, that property is set to the login URL value from the configurationData
parameter.