/// <summary> /// Updates the session data. /// </summary> public override void UpdateSessionData() { UpdateSessionEventArgs args = new UpdateSessionEventArgs(); args.WebSession = this.SelectedSession; this.UpdateSessionEvent(this, args); }
private void sessionInfoControl_UpdateSessionEvent(object sender, UpdateSessionEventArgs e) { this.WebSession.IsCookieUpdatable = e.WebSession.IsCookieUpdatable; this.WebSession.AllowSafeRequestBacktracking = e.WebSession.AllowSafeRequestBacktracking; this.SafeSession.IsCookieUpdatable = e.WebSession.IsCookieUpdatable; this.SafeSession.AllowSafeRequestBacktracking = e.WebSession.AllowSafeRequestBacktracking; }