Guys,
When I create a custom role provider by inheriting from RoleProvider, I created a method called public override string[] GetRolesForUser(string username) .. However, when I try to use this Service Reference all I have access to is GetRolesForCurrentUser(). It works and calls my method behind the scenes ok. As in, GetRoleseForCurrentUser passes the current user into my method so it's all good. But what I'm wondering is, is there a way for me to also expose my original method (the one that takes an argument), or am I missing something?