Multiple choice technology life sciences

How do you explicitly kill a user's session in ASP.Net?

  1. Session.Close()

  2. Session.discard()

  3. Session.Abandon()

  4. Session.Exit()

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In ASP.NET, the Session.Abandon() method is the standard way to destroy a user's session and release its resources. Alternative methods like Session.Close(), Session.discard(), or Session.Exit() do not exist as valid session termination APIs in the framework.