SessionAuthenticationModule.SignedOut Event

Definition

Occurs after the user is signed out.

public:
 event EventHandler ^ SignedOut;
public event EventHandler SignedOut;
member this.SignedOut : EventHandler 
Public Custom Event SignedOut As EventHandler 
Public Event SignedOut As EventHandler 

Event Type

Examples

The following code shows a handler for the SignedOut event implemented in the global.asax.cs file of an ASP.NET web application. You must also add the handler to the event. A more complete example is shown in the SessionAuthenticationModule overview topic.

void SessionAuthenticationModule_SignedOut(object sender, EventArgs e)
{
    System.Diagnostics.Trace.WriteLine("Handling SignedOut event");
}

Remarks

Raised from the SignOut method just after the DeleteSessionTokenCookie method is invoked.

This event is not guaranteed to be called for every session. For example, the cookies may be deleted at the client-side, in which case, this event would never be raised because there is no server-side event for deleting the session.

Applies to