4 overrides of GetRolesForUser
System.Web (3)
Security\AuthStoreRoleProvider.cs (1)
147public override string[] GetRolesForUser(string username)
Security\SQLRoleProvider.cs (1)
160public override string [] GetRolesForUser(string username)
Security\WindowsTokenRoleProvider.cs (1)
104public override string [] GetRolesForUser(string username){
System.Web.Extensions (1)
ClientServices\Providers\ClientRoleProvider.cs (1)
111public override string[] GetRolesForUser(string username)
4 references to GetRolesForUser
System.Web (3)
Security\RolePrincipal.cs (2)
303roles = Roles.Providers[_ProviderName].GetRolesForUser(Identity.Name); 334string[] roles = Roles.Providers[_ProviderName].GetRolesForUser(Identity.Name);
Security\Roles.cs (1)
149roles = Provider.GetRolesForUser(username);
System.Web.Extensions (1)
ApplicationServices\RoleService.cs (1)
74return provider.GetRolesForUser(username);