FormsAuthenticationConfiguration.Name Property
.NET Framework (current version)
Gets or sets the cookie name.
Assembly: System.Web (in System.Web.dll)
<ConfigurationPropertyAttribute("name", DefaultValue := ".ASPXAUTH")> <StringValidatorAttribute(MinLength := 1)> Public Property Name As String
The following code example shows how to access the Name property Refer to the code example in the FormsAuthenticationConfiguration class topic to learn how to get the section.
' Get the configuration file. Replace the name configTarget ' with the name of your site. Dim configuration As System.Configuration.Configuration = _ WebConfigurationManager.OpenWebConfiguration("/configTarget") ' Get the authentication section. Dim authenticationSection As AuthenticationSection = _ CType(configuration.GetSection("system.web/authentication"), AuthenticationSection) ' Get the external Forms section . Dim formsAuthentication As FormsAuthenticationConfiguration = _ authenticationSection.Forms Dim cookieName As String = formsAuthentication.Name
.NET Framework
Available since 2.0
Available since 2.0
Show: