Reputation: 880
I am very much familiar with handling roles (role membership) in ASP.NET but i want to have the same functionality of authentication and authorization for my desktop application. Do C# / .Net Framework offers such functionality.
Just for information, i intend using MySQL as database. If any framework providing the role based management is implemented in other database, i will be happy to switch to it.
Upvotes: 0
Views: 2008
Reputation: 82325
You can utilize membership libraries in a desktop application and even specify an AD provider if you don't want to use a database to store the membership information and rather rely on domain security.
The membership is located in the System.Web dll and you will have to reference this and configure your app.config accordingly in your desktop project.
Upvotes: 2