System.Web.SessionState.SessionStateModule.CallbackState.CallbackState C# (CSharp) Method

CallbackState() public method

public CallbackState ( HttpContext context, AutoResetEvent e, string sessionId, bool isReadOnly ) : System.Collections.Specialized
context HttpContext
e System.Threading.AutoResetEvent
sessionId string
isReadOnly bool
return System.Collections.Specialized
			public CallbackState (HttpContext context, AutoResetEvent e, string sessionId, bool isReadOnly) {
				this.Context = context;
				this.AutoEvent = e;
				this.SessionId = sessionId;
				this.IsReadOnly = isReadOnly;
			}
		}
SessionStateModule.CallbackState