FormsAuthentication.RenewTicketIfOld(FormsAuthenticationTicket) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Conditionally updates the issue date and time and expiration date and time for a FormsAuthenticationTicket.
public:
static System::Web::Security::FormsAuthenticationTicket ^ RenewTicketIfOld(System::Web::Security::FormsAuthenticationTicket ^ tOld);
public static System.Web.Security.FormsAuthenticationTicket RenewTicketIfOld (System.Web.Security.FormsAuthenticationTicket tOld);
static member RenewTicketIfOld : System.Web.Security.FormsAuthenticationTicket -> System.Web.Security.FormsAuthenticationTicket
Public Shared Function RenewTicketIfOld (tOld As FormsAuthenticationTicket) As FormsAuthenticationTicket
Parameters
The forms-authentication ticket to update.
Returns
The updated FormsAuthenticationTicket.
Remarks
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.