FormsAuthenticationTicket.FormsAuthenticationTicket(Int32, String, DateTime, DateTime, Boolean, String) Constructor
.NET Framework 2.0
Initializes a new instance of the FormsAuthenticationTicket class with cookie name, version, expiration date, issue date, persistence, and user-specific data. The cookie path is set to the default value established in the application's configuration file.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Sub New ( _ version As Integer, _ name As String, _ issueDate As DateTime, _ expiration As DateTime, _ isPersistent As Boolean, _ userData As String _ ) 'Usage Dim version As Integer Dim name As String Dim issueDate As DateTime Dim expiration As DateTime Dim isPersistent As Boolean Dim userData As String Dim instance As New FormsAuthenticationTicket(version, name, issueDate, expiration, isPersistent, userData)
public FormsAuthenticationTicket ( int version, String name, DateTime issueDate, DateTime expiration, boolean isPersistent, String userData )
public function FormsAuthenticationTicket ( version : int, name : String, issueDate : DateTime, expiration : DateTime, isPersistent : boolean, userData : String )
Not applicable.
Parameters
- version
The version number of the ticket.
- name
The user name associated with the ticket.
- issueDate
The local date and time at which the ticket was issued.
- expiration
The local date and time at which the ticket expires.
- 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.
- userData
The user-specific data to be stored with the ticket.
The FormsAuthenticationTicket object created by this constructor will have a CookiePath value set to the value of the FormsCookiePath.
Note: |
|---|
|
The userData parameter cannot be a null reference (Nothing in Visual Basic). |
Community Additions
ADD
Show:
Note: