3 references to MAX_TICKET_LENGTH
System.Web (3)
Security\FormsAuthentication.cs (3)
136
if (String.IsNullOrEmpty(encryptedTicket) || encryptedTicket.Length >
MAX_TICKET_LENGTH
)
199
int iSize = ((ticketLength >
MAX_TICKET_LENGTH
) ?
MAX_TICKET_LENGTH
: ticketLength);