8 writes to
System.Web (4)
Abstractions\HttpSessionStateWrapper.cs (1)
123_session[name] = value;
UI\SessionPageStatePersister.cs (2)
118session[sessionKey] = state; 124session[_viewStateQueueKey] = queue;
Util\AspCompat.cs (1)
878_context.Session[name] = obj;
System.Web.DataVisualization (2)
WebForm\General\ChartHttpHandler.cs (2)
1298HttpContext.Current.Session[this._sesionKey] = 0; 1546HttpContext.Current.Session[GetSessionImageKey(key)] = data;
System.Web.Mobile (2)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPageAdapter.cs (1)
408Page.Session[writer.SessionKey] = writer.GetStyles();
UI\MobileControls\SessionViewState.cs (1)
72page.Session[ViewStateKey] = history;
12 references to
System.Web (6)
Abstractions\HttpSessionStateWrapper.cs (1)
120return _session[name];
UI\SessionPageStatePersister.cs (2)
65object sessionData = Page.Session[_viewStateSessionKey + persistedStateID]; 120Queue queue = session[_viewStateQueueKey] as Queue;
UI\TraceContext.cs (1)
626obj = session[temp];
UI\WebControls\SessionParameter.cs (1)
105return context.Session[SessionField];
Util\AspCompat.cs (1)
874return _context.Session[name];
System.Web.DataVisualization (2)
WebForm\General\ChartHttpHandler.cs (2)
1659data = (Byte[])HttpContext.Current.Session[GetSessionImageKey(key)]; 1725return HttpContext.Current.Session[GetSessionImageKey(key)] is Byte[];
System.Web.Mobile (4)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlCssHandler.cs (1)
32response = (String) context.Session[cssQueryStringValue];
UI\MobileControls\SessionViewState.cs (3)
68SessionViewStateHistory history = (SessionViewStateHistory)page.Session[ViewStateKey]; 87SessionViewStateHistory history = (SessionViewStateHistory)page.Session[ViewStateKey]; 114history = (SessionViewStateHistory)page.Session[ViewStateKey];