5 writes to Value
System.Web (4)
HttpRequest.cs (1)
686
c.
Value
= s.Substring(i, l-i);
Security\AnonymousIdentificationModule.cs (1)
179
cookie.
Value
= "NoCookie";
Security\FormsAuthenticationModule.cs (1)
168
cookie.
Value
= strEnc;
Util\AspCompat.cs (1)
674
_context.Response.Cookies[name].
Value
= text;
System.Workflow.Runtime (1)
Hosting\WorkflowWebHostingModule.cs (1)
90
cookie.
Value
= workflowInstanceId.ToString();
34 references to Value
System.Web (33)
HttpCookieCollection.cs (2)
266
EnsureKeyValidated(name, cookie.
Value
);
297
EnsureKeyValidated(GetKey(index), cookie.
Value
);
HttpRequest.cs (5)
747
lastCookie.Path = cookie.
Value
;
749
lastCookie.Domain = cookie.
Value
;
1136
_params.Add(cookie.Name, cookie.
Value
);
2056
return c.
Value
;
2778
String val = cc.Get(i).
Value
;
HttpValueCollection.cs (1)
274
base.Add(cookie.Name, cookie.
Value
);
ModelBinding\CookieValueProvider.cs (1)
83
string value = collection[key].
Value
;
Security\AnonymousIdentificationModule.cs (1)
195
encValue = cookie.
Value
;
Security\FormsAuthentication.cs (3)
460
context.CookielessHelper.SetCookieValue('F', cookie.
Value
);
601
strUrl += "&" + cookie.Name + "=" + cookie.
Value
;
604
strUrl += "?" + cookie.Name + "=" + cookie.
Value
;
Security\FormsAuthenticationModule.cs (1)
348
encValue = cookie.
Value
;
Security\PassportIdentity.cs (6)
61
String strMSPAuthCookie = ((cookieAuth != null && cookieAuth.
Value
!= null) ? cookieAuth.
Value
: String.Empty);
62
String strMSPProfCookie = ((cookieProf != null && cookieProf.
Value
!= null) ? cookieProf.
Value
: String.Empty);
63
String strMSPProfCCookie = ((cookieProfC != null && cookieProfC.
Value
!= null) ? cookieProfC.
Value
: String.Empty);
Security\RoleManagerModule.cs (1)
110
string cookieValue = cookie.
Value
;
State\SessionIDManager.cs (2)
301
if (cookie != null && cookie.
Value
!= null) {
302
s = Decode((String)cookie.
Value
);
UI\TraceContext.cs (6)
563
row[SR.Trace_Value] = cookies[i].
Value
;
566
size += (cookies[i].
Value
== null) ? 0 : cookies[i].
Value
.Length;
593
row[SR.Trace_Value] = cookies[i].
Value
;
596
size += (cookies[i].
Value
== null) ? 0 : cookies[i].
Value
.Length;
UI\WebControls\CookieParameter.cs (1)
111
return cookie.
Value
;
UnvalidatedRequestValues.cs (1)
128
return cookie.
Value
;
Util\AspCompat.cs (1)
514
String value = EncodeTab(c.
Value
);
WebSockets\AspNetWebSocketContextImpl.cs (1)
78
Value = cookie.
Value
,
System.Workflow.Runtime (1)
Hosting\WorkflowWebHostingModule.cs (1)
73
HttpContext.Current.Items.Add("__WorkflowInstanceId__", new Guid(routingCookie.
Value
));