Roles.CreatePersistentCookie Property (System.Web.Security)

Switch View :
ScriptFree
.NET Framework Class Library
Roles.CreatePersistentCookie Property

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)
Syntax

Visual Basic
Public Shared ReadOnly Property CreatePersistentCookie As Boolean
	Get
C#
public static bool CreatePersistentCookie { get; }
Visual C++
public:
static property bool CreatePersistentCookie {
	bool get ();
}
F#
static member CreatePersistentCookie : bool

Property Value

Type: System.Boolean
true if the role-names cookie is a persistent cookie; otherwise false. The default is false.
Remarks

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.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources