3 instantiations of HttpSessionState
System.Web (3)
State\SessionStateModule.cs (1)
93HttpSessionState sessionState = new HttpSessionState(sessionStateContainer);
State\SessionStateUtil.cs (2)
35HttpApplicationFactory.EndSession(new HttpSessionState(session), eventSource, eventArgs); 40HttpSessionState sessionState = new HttpSessionState(container);
34 references to HttpSessionState
System.Runtime.Remoting (1)
services\remotingservice.cs (1)
34public HttpSessionState Session
System.Web (32)
Abstractions\HttpContextWrapper.cs (1)
189HttpSessionState session = _context.Session;
Abstractions\HttpSessionStateWrapper.cs (2)
18private readonly HttpSessionState _session; 20public HttpSessionStateWrapper(HttpSessionState httpSessionState) {
HttpApplication.cs (4)
142private HttpSessionState _session; 401public HttpSessionState Session { 403HttpSessionState session = null; 1538HttpSessionState session) {
HttpApplicationFactory.cs (5)
471private HttpSessionState _session; 475internal AspCompatSessionOnEndHelper(HttpApplication app, HttpSessionState session, Object eventSource, EventArgs eventArgs) { 483internal HttpSessionState Session { get { return _session; } } 500private void FireSessionOnEnd(HttpSessionState session, Object eventSource, EventArgs eventArgs) { 632internal static void EndSession(HttpSessionState session, Object eventSource, EventArgs eventArgs) {
HttpContext.cs (5)
688else if (service == typeof(HttpSessionState)) 1003public HttpSessionState Session { 1022return(HttpSessionState)Items[SessionStateUtility.SESSION_KEY]; 1042HttpSessionState session = (HttpSessionState)Items[SessionStateUtility.SESSION_KEY];
State\SessionState.cs (1)
348public HttpSessionState Contents {
State\SessionStateModule.cs (4)
42HttpSessionState _sessionState; 44internal SessionOnEndTargetWorkItem(SessionOnEndTarget target, HttpSessionState sessionState) { 74internal void RaiseOnEnd(HttpSessionState sessionState) { 93HttpSessionState sessionState = new HttpSessionState(sessionStateContainer);
State\SessionStateUtil.cs (1)
40HttpSessionState sessionState = new HttpSessionState(container);
UI\Page.cs (2)
239private HttpSessionState _session; 1208public virtual HttpSessionState Session {
UI\SessionPageStatePersister.cs (2)
21HttpSessionState session = null; 100HttpSessionState session = Page.Session;
UI\TraceContext.cs (1)
602HttpSessionState session = _context.Session;
UI\UserControl.cs (1)
235public HttpSessionState Session { get { return Page.Session; } }
Util\AspCompat.cs (3)
225HttpSessionState session = _context.Session; 239internal static bool AnyStaObjectsInSessionState(HttpSessionState session) { 279HttpSessionState session = context.Session;
System.Web.Mobile (1)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlMobileTextWriter.cs (1)
545public virtual void SetSessionKey (HttpSessionState session) {