BlogEngine.Core.Providers.XmlRoleProvider.GetAllRoles C# (CSharp) 메소드

GetAllRoles() 공개 메소드

Gets a list of all the roles for the configured applicationName.
public GetAllRoles ( ) : string[]
리턴 string[]
        public override string[] GetAllRoles()
        {
            ReadRoleDataStore();
            return this.roles[Blog.CurrentInstance.Id].Select(role => role.Name).ToArray();
        }