Custom Membership Provider Extension

I created a custom membership provider and implemented the methods that I need. Now I need to add my own custom method that relates to the password.

I added a new method, but I can’t use it anywhere in the code. Can I add methods to my custom membership provider or is this done elsewhere?

+6
source share
1 answer
((YourProviderType)Membership.Provider).YourMethod(); 
+10
source

Source: https://habr.com/ru/post/886371/


All Articles