How do you explicitly kill a user’s session ?
-
Session.Close ( )
-
Session.Discard ( )
-
Session.Abandon ( )
-
Session.Exit ( )
C
Correct answer
Explanation
Session.Abandon() is the correct method to explicitly terminate a user's session in ASP.NET. It ends the current session, releases session resources, and fires the Session_End event. The other methods (Close, Discard, Exit) do not exist in the Session API.