FormsAuthenticationTicket.FormsAuthenticationTicket(String, Boolean, Int32) Constructor
.NET Framework 3.0
Initializes a new instance of the FormsAuthenticationTicket class using a cookie name and expiration information.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public FormsAuthenticationTicket ( String name, boolean isPersistent, int timeout )
public function FormsAuthenticationTicket ( name : String, isPersistent : boolean, timeout : int )
Not applicable.
Parameters
- name
The user name associated with the ticket.
- isPersistent
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
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.
Community Additions
ADD
Show: