Are there any decent examples of (or tutorials on) simple user sessions in a WPF desktop app?
My app contains an Entity Framework library, a couple in-house class libraries, and a presentation layer that’s a WPF project. We’re not presently hooking into any webservices or building a WCF layer.
Still, people will log into the app using a Citrix account- with many people possibly using the same account (client’s design there), so I’d like to create a user session for each login. How tractable is this on the desktop? I’ve found an Auto logoff example for WPF Desktop on codeproject, but no basic implementations of the logon/session. All the WPF session info I’ve found so far has been browser based, mostly hitting WCF services.
Based on searching due to @Matt_West’s response, I was guided to the fact that I shouldn’t be searching for “user session management” in WPF, but for “Membership Services.” Once I did that, I found a SO Thread on Membership Services in WPF