2 writes to Name
System.Web (2)
HttpRequest.cs (2)
669
c.
Name
= s.Substring(i, ei-i);
674
c.
Name
= s;
21 references to Name
System.Web (21)
HttpCookie.cs (1)
377
if (string.IsNullOrEmpty(cookie.
Name
)) {
HttpCookieCollection.cs (4)
91
BaseAdd(cookie.
Name
, cookie);
94
if (BaseGet(cookie.
Name
) != null) {
98
BaseSet(cookie.
Name
, cookie);
109
BaseAdd(cookie.
Name
, cookie);
HttpRequest.cs (2)
742
String name = cookie.
Name
;
1136
_params.Add(cookie.
Name
, cookie.Value);
HttpValueCollection.cs (1)
274
base.Add(cookie.
Name
, cookie.Value);
Security\FormsAuthentication.cs (3)
599
strUrl = RemoveQueryStringVariableFromUrl(strUrl, cookie.
Name
); // Make sure there is no other ticket in the Query String.
601
strUrl += "&" + cookie.
Name
+ "=" + cookie.Value;
604
strUrl += "?" + cookie.
Name
+ "=" + cookie.Value;
Security\FormsAuthenticationModule.cs (2)
174
e.Context.Response.Cookies.Remove(cookie.
Name
);
462
context.Response.Cookies.Remove(cookie.
Name
);
UI\TraceContext.cs (6)
547
row[SR.Trace_Name] = cookies[i].
Name
;
565
int size = (cookies[i].
Name
== null) ? 0 : cookies[i].
Name
.Length;
577
row[SR.Trace_Name] = cookies[i].
Name
;
595
int size = (cookies[i].
Name
== null) ? 0 : cookies[i].
Name
.Length;
Util\AspCompat.cs (1)
513
String name = EncodeTab(c.
Name
);
WebSockets\AspNetWebSocketContextImpl.cs (1)
77
Name = cookie.
Name
,