asp.netsessionasp.net-session

What is the difference between Session.Abandon() and Session.Clear()


What is the difference between destroying a session and removing its values? Can you please provide an example demonstrating this?

I searched for this question, but don't grasp total answer. Some answers are:

A friend told me this:

Clearing the session will not unset the session, it still exists with the same ID for the user but with the values simply cleared.

Abandon will destroy the session completely, meaning that you need to begin a new session before you can store any more values in the session for that user.

The below code works and doesn't throw any exceptions.

Session.Abandon();
Session["tempKey1"] = "tempValue1";

When you Abandon() a Session, you (or rather the user) will get a new SessionId

When I test Session, it doesn't makes any change when I Abandon the session.

I just find one difference: session.Abandon() raises Session_End event


Solution

  • Clear - Removes all keys and values from the session-state collection.

    Abandon - removes all the objects stored in a Session. If you do not call the Abandon method explicitly, the server removes these objects and destroys the session when the session times out.
    It also raises events like Session_End.

    Session.Clear can be compared to removing all books from the shelf, while Session.Abandon is more like throwing away the whole shelf.

    You say:

    When I test Session, it doesn't makes any change when I Abandon the session.

    This is correct while you are doing it within one request only.
    On the next request the session will be different. But the session ID can be reused so that the id will remain the same.

    If you will use Session.Clear you will have the same session in many requests.

    Generally, in most cases you need to use Session.Clear.
    You can use Session.Abandon if you are sure the user is going to leave your site.

    So back to the differences:

    1. Abandon raises Session_End request.
    2. Clear removes items immidiately, Abandon does not.
    3. Abandon releases the SessionState object and its items so it can ba garbage collected to free the resources. Clear keeps SessionState and resources associated with it.