FormsAuthenticationTicket Constructor (String, Boolean, Int32)
Initializes a new instance of the FormsAuthenticationTicket class using a cookie name and expiration information.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Sub New ( _ name As String, _ isPersistent As Boolean, _ timeout As Integer _ ) 'Usage Dim name As String Dim isPersistent As Boolean Dim timeout As Integer Dim instance As New FormsAuthenticationTicket(name, isPersistent, _ timeout)
Parameters
- name
- Type: System.String
The user name associated with the ticket.
- isPersistent
- Type: System.Boolean
true if the ticket will be stored in a persistent cookie (saved across browser sessions); otherwise, false. If the ticket is stored in the URL, this value is ignored.
- timeout
- Type: System.Int32
The time, in minutes, for which the authentication ticket is valid.
The FormsAuthenticationTicket object created by this constructor will have a CookiePath value set to the value of the FormsCookiePath property, a Version value of 2, an IssueDate value of the current local date and time, a UserData value of an empty string (""), and an Expiration value that is set to the current local date and time plus the value of the timeout parameter.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.