4 writes to _store
System.Web (4)
State\SessionStateModule.cs (4)
353_store = new InProcSessionStateStore(); 362_store = new OutOfProcSessionStateStore(); 367_store = new SqlSessionStateStore(); 384_store = InitCustomStore(config);
26 references to _store
System.Web (26)
State\SessionStateModule.cs (26)
354_store.Initialize(null, null); 363((OutOfProcSessionStateStore)_store).Initialize(null, null, _partitionResolver); 368((SqlSessionStateStore)_store).Initialize(null, null, _partitionResolver); 478if (_store != null) { 479_store.Dispose(); 582if (_store != null && _onEndTarget.SessionEndEventHandlerCount == 0) { 583_supportSessionExpiry = _store.SetItemExpireCallback( 593if (_store != null && _onEndTarget.SessionEndEventHandlerCount == 0) { 594_store.SetItemExpireCallback(null); 624_store.InitializeRequest(_rqContext); 679_store.ResetItemTimeout(_rqContext, _rqId); 772_store.SetAndReleaseItemExclusive(_rqContext, _rqId, _rqItem, _rqLockId, true /*_rqSessionStateNotFound*/); 884_store.CreateUninitializedItem(_rqContext, _rqId, s_timeout); 895_rqItem = _store.CreateNewStoreData(_rqContext, s_timeout); 964SessionStateStoreData storedItem = _store.GetItemExclusive(_rqContext, _rqId, out locked, out lockAge, out _rqLockId, out _rqActionFlags); 978_rqItem = _store.GetItem(_rqContext, _rqId, out locked, out lockAge, out _rqLockId, out _rqActionFlags); 981_rqItem = _store.GetItemExclusive(_rqContext, _rqId, out locked, out lockAge, out _rqLockId, out _rqActionFlags); 990_rqItem = _store.GetItemExclusive(_rqContext, _rqId, out locked, out lockAge, out _rqLockId, out _rqActionFlags); 1004_store.ReleaseItemExclusive(_rqContext, _rqId, _rqLockId); 1125((SqlSessionStateStore)_store).KnowForSureNotUsingIntegratedSecurity && 1325_store.RemoveItem(_rqContext, ReleaseStateGetSessionID(), _rqLockId, _rqItem); 1376_store.SetAndReleaseItemExclusive(_rqContext, ReleaseStateGetSessionID(), _rqItem, _rqLockId, _rqSessionStateNotFound); 1384_store.ReleaseItemExclusive(_rqContext, ReleaseStateGetSessionID(), _rqLockId); 1464_store.InitializeRequest(_rqContext); 1470_store.ResetItemTimeout(context, id); 1481_store.EndRequest(_rqContext);