44 references to Items
System.Runtime.Remoting (2)
channels\http\httpremotinghandler.cs (2)
225
context.
Items
["__requestUri"] = requestUri;
554
requestHeaders.RequestUri = (string)context.
Items
["__requestUri"];
System.Web (20)
Abstractions\HttpContextWrapper.cs (1)
146
return _context.
Items
;
HttpContext.cs (2)
1022
return(HttpSessionState)
Items
[SessionStateUtility.SESSION_KEY];
1042
HttpSessionState session = (HttpSessionState)
Items
[SessionStateUtility.SESSION_KEY];
Routing\UrlRoutingModule.cs (2)
34
if (application.Context.
Items
[_contextKey] != null) {
37
application.Context.
Items
[_contextKey] = _contextKey;
SiteMapProvider.cs (3)
370
if (!context.
Items
.Contains(_resolutionTicket)) {
371
context.
Items
.Add(_resolutionTicket, true);
383
context.
Items
.Remove(_resolutionTicket);
State\SessionIDManager.cs (8)
152
context.
Items
[COOKIELESS_BOOL_SESSION_KEY] = cookieless;
171
context.
Items
.Add(COOKIELESS_SESSION_KEY, id);
245
Debug.Assert(context.
Items
[ASP_SESSIONID_MANAGER_INITIALIZEREQUEST_CALLED_KEY] != null);
251
object o = context.
Items
[COOKIELESS_BOOL_SESSION_KEY];
260
if (context.
Items
[ASP_SESSIONID_MANAGER_INITIALIZEREQUEST_CALLED_KEY] == null) {
268
if (context.
Items
[ASP_SESSIONID_MANAGER_INITIALIZEREQUEST_CALLED_KEY] != null) {
273
context.
Items
[ASP_SESSIONID_MANAGER_INITIALIZEREQUEST_CALLED_KEY] = true;
297
s = (String) context.
Items
[COOKIELESS_SESSION_KEY];
State\SessionStateUtil.cs (2)
43
context.
Items
.Add(SESSION_KEY, sessionState);
56
context.
Items
.Remove(SESSION_KEY);
UI\RenderTraceListener.cs (2)
37
RenderTraceListener listener = HttpContext.Current.
Items
[typeof(RenderTraceListener)] as RenderTraceListener;
40
HttpContext.Current.
Items
[typeof(RenderTraceListener)] = listener;
System.Web.DataVisualization (9)
WebForm\General\ChartHttpHandler.cs (9)
318
return (string)HttpContext.Current.
Items
[ContextGuidKey];
328
HttpContext.Current.
Items
.Remove(ContextGuidKey);
332
HttpContext.Current.
Items
[ContextGuidKey] = value;
896
if (HttpContext.Current != null && HttpContext.Current.
Items
.Contains(_folderKeyName))
898
return (string)HttpContext.Current.
Items
[_folderKeyName];
914
HttpContext.Current.
Items
[_folderKeyName] = value;
2108
if (HttpContext.Current.
Items
[Diagnostics.ContextID] == null)
2116
HttpContext.Current.
Items
[Diagnostics.ContextID] = pageTrace;
2118
return (HandlerPageTraceInfo)HttpContext.Current.
Items
[Diagnostics.ContextID];
System.Web.Extensions (6)
Handlers\ScriptModule.cs (6)
83
object o = context.
Items
[PageRequestManager.AsyncPostBackErrorKey];
92
string errorMessage = (string)context.
Items
[PageRequestManager.AsyncPostBackErrorMessageKey];
93
o = context.
Items
[PageRequestManager.AsyncPostBackErrorHttpCodeKey];
108
if (app.Context.
Items
[_contextKey] != null) {
111
app.Context.
Items
[_contextKey] = _contextKey;
148
context.
Items
[PageRequestManager.AsyncPostBackRedirectLocationKey] = redirectLocation;
System.Web.Mobile (2)
Mobile\ErrorHandlerModule.cs (1)
117
context.
Items
[MobileErrorInfo.ContextKey] = errorInfo;
UI\MobileControls\ErrorFormatterPage.cs (1)
52
_errorInfo = Context.
Items
[MobileErrorInfo.ContextKey] as MobileErrorInfo;
System.Workflow.Activities (3)
Executors\WorkflowWebService.cs (3)
155
Object instanceId = HttpContext.Current.
Items
["__WorkflowInstanceId__"];
164
Object isActivationContext = HttpContext.Current.
Items
["__IsActivationContext__"];
174
HttpContext.Current.
Items
["__WorkflowInstanceId__"] = workflowInstanceId;
System.Workflow.Runtime (2)
Hosting\WorkflowWebHostingModule.cs (2)
73
HttpContext.Current.
Items
.Add("__WorkflowInstanceId__", new Guid(routingCookie.Value));
86
Object workflowInstanceId = HttpContext.Current.
Items
["__WorkflowInstanceId__"];