FormsAuthentication.RenewTicketIfOld Method (FormsAuthenticationTicket)
.NET Framework (current version)
Conditionally updates the issue date and time and expiration date and time for a FormsAuthenticationTicket.
Assembly: System.Web (in System.Web.dll)
public static FormsAuthenticationTicket RenewTicketIfOld( FormsAuthenticationTicket tOld )
Parameters
- tOld
-
Type:
System.Web.Security.FormsAuthenticationTicket
The forms-authentication ticket to update.
Return Value
Type: System.Web.Security.FormsAuthenticationTicketThe updated FormsAuthenticationTicket.
The RenewTicketIfOld method updates the expiration date and time of the supplied FormsAuthenticationTicket if the current date and time minus the IssueDate value is greater than the Expiration value minus the current date and time.
The ticket is updated with the IssueDate property set to the current date and time and the Expiration property set to the current date and time plus the original Expiration value minus the original IssueDate value.
.NET Framework
Available since 1.1
Available since 1.1
Show: