6

I have made a Custom Membership Provider and implemented what methods i need. I now need to add a custom method of my own which deals with the password.

I have added a new method but i am unable to use it anywhere in code. Is it possible to add methods to my custom membership provider or is this done elsewhere?

abatishchev
  • 98,240
  • 88
  • 296
  • 433
Hesky
  • 787
  • 3
  • 8
  • 14
  • An example of the answer: ((CustomMembershipProvider) Membership.Provider).TestMethod(password); – Hesky Apr 23 '11 at 14:54

1 Answers1

10
((YourProviderType)Membership.Provider).YourMethod();
sisve
  • 19,501
  • 3
  • 53
  • 95
abatishchev
  • 98,240
  • 88
  • 296
  • 433