Reputation: 137
How to implement user sessions in wpf?
I have a XBAP application in which I am required to implement the user sessions IS there any way I can achieve this in WPF?
Thank you?
Upvotes: 1
Views: 2437
Reputation: 13151
WPF doesn't implement the concept of sessions.
You may use a session provider or maybe an asp web service to produce a custom solution.
Or you could use an Isolated storage for all the users data.
Also check out some previous posts which address this:
Upvotes: 2