Silverlight Browser Close Event -
I need to call a web service when the user closes the browser hosting my Silverlight 2 application Which will log out the user. I know about the application_Exit event, though, when I call my service in that event, then nothing happens. I think the connection to my service has already been closed.
Is there any other event that I should use?
Please help.
Do not do that. Calling a service on service exclusion is not supported by Silverlight, you need a service to clean yourself, possibly according to the application to clear the application every few minutes / hours.
Comments
Post a Comment