Roles.CreatePersistentCookie Property
.NET Framework 3.0
Gets a value indicating whether the role-names cookie is session-based or persistent.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Roles Members
System.Web.Security Namespace
Assembly: System.Web (in system.web.dll)
'Declaration Public Shared ReadOnly Property CreatePersistentCookie As Boolean 'Usage Dim value As Boolean value = Roles.CreatePersistentCookie
/** @property */ public static boolean get_CreatePersistentCookie ()
public static function get CreatePersistentCookie () : boolean
Not applicable.
Property Value
true if the role-names cookie is a persistent cookie; otherwise false. The default is false.The CreatePersistentCookie property value is set in the configuration for an ASP.NET application using the createPersistentCookie attribute of the roleManager configuration element.
When false, the role-names cookie is a session cookie, that is, the cookie is lost when the browser is closed. When true, the role-names cookie is a persistent cookie that is available across multiple browser sessions. The persistent cookie expiration date and time are set to the current date and time plus the CookieTimeout value in minutes.
Reference
Roles ClassRoles Members
System.Web.Security Namespace
Other Resources
Understanding Role ManagementCommunity Additions
ADD
Show: