BetterMembership.Web.BetterRoleProvider.GetRolesForUser C# (CSharp) Method

GetRolesForUser() public method

public GetRolesForUser ( string username ) : string[]
username string
return string[]
        public override string[] GetRolesForUser(string username)
        {
            try
            {
                return base.GetRolesForUser(username);
            }
            catch (InvalidOperationException)
            {
                return new string[0];
            }
        }