FormsAuthenticationTicket.CookiePath Property
.NET Framework 3.0
Gets the cookie path for the forms-authentication ticket.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
If the FormsAuthenticationTicket is created using a constructor that does not supply a cookiePath parameter, the CookiePath property returns the value of the FormsCookiePath property; otherwise, the version property returns the value supplied to the FormsAuthenticationTicket constructor.
The following code example displays the property values of the FormsAuthenticationTicket for the current logged-on user.
Note: |
|---|
|
If there is no logged-on user, the Identity property will be a null reference (Nothing in Visual Basic) and you will receive a compiler exception when attempting to cast the Identity property as a FormsIdentity object. |
Community Additions
ADD
Show:
Note: