15 references to FormsCookieName
System.Web (8)
Security\FormsAuthentication.cs (4)
413
HttpCookie cookie = new HttpCookie(
FormsCookieName
, cookieValue);
421
context.Response.Cookies.RemoveCookie(
FormsCookieName
);
508
HttpCookie cookie = new HttpCookie(
FormsCookieName
, strTicket);
587
strUrl = RemoveQueryStringVariableFromUrl(strUrl,
FormsCookieName
); // Make sure there is no other ticket in the Query String.
Security\FormsAuthenticationModule.cs (4)
114
FormsAuthenticationTicket ticket = ExtractTicketFromCookie(e.Context, FormsAuthentication.
FormsCookieName
, out cookielessTicket);
136
cookie = e.Context.Request.Cookies[FormsAuthentication.
FormsCookieName
];
159
cookie = e.Context.Request.Cookies[FormsAuthentication.
FormsCookieName
];
162
cookie = new HttpCookie(FormsAuthentication.
FormsCookieName
, strEnc);
System.Web.Mobile (7)
Mobile\CookielessData.cs (1)
29
String name = FormsAuthentication.
FormsCookieName
;
UI\MobileControls\Adapters\WmlControlAdapter.cs (1)
122
String formsAuthCookieName = FormsAuthentication.
FormsCookieName
;
UI\MobileControls\Adapters\WmlFormAdapter.cs (1)
49
String formsAuthCookieName = FormsAuthentication.
FormsCookieName
;
UI\MobileControls\Adapters\WmlMobileTextWriter.cs (1)
867
String formsAuthCookieName = FormsAuthentication.
FormsCookieName
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicControlAdapter.cs (1)
744
queryString = RemoveQueryStringPair(FormsAuthentication.
FormsCookieName
, queryString);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicFormAdapter.cs (1)
39
String formsAuthCookieName = FormsAuthentication.
FormsCookieName
;
UI\MobileControls\MobilePage.cs (1)
645
fullQueryString = RemoveQueryStringElement(fullQueryString, FormsAuthentication.
FormsCookieName
);