TicketCompatibilityMode Enum

Definition

Defines whether to use Coordinated Universal Time (UTC) or local time for the ticket expiration date for forms authentication.

public enum class TicketCompatibilityMode
public enum TicketCompatibilityMode
type TicketCompatibilityMode = 
Public Enum TicketCompatibilityMode
Inheritance
TicketCompatibilityMode

Fields

Framework20 0

Specifies that the ticket expiration date is stored as local time. This is the default value.

Framework40 1

Specifies that the ticket expiration date is stored as UTC.

Examples

The following example configures the forms authentication ticket expiration date as UTC time.

<system.web>  
  <authentication mode="Forms">   
    <forms ticketCompatibilityMode="Framework40">  
    </forms>  
  </authentication>  
</system.web>  

Remarks

The ticket expiration date for ASP.NET forms authentication can be stored by using Coordinated Universal Time (UTC) or the local time. For compatibility between applications, and for compatibility between different versions of .NET Framework, the ticket expiration time can be specified by using the ticketCompatibilityMode attribute of the forms element. The default value for the ticketCompatibilityMode attribute is Framework20.

Applies to