FormsAuthentication.EnableFormsAuthentication(NameValueCollection) Method

Definition

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.

Applies to