BetterMembership.Web.BetterRoleProvider.GetRolesForUser C# (CSharp) 메소드

GetRolesForUser() 공개 메소드

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