BlogEngine.Core.Providers.XmlRoleProvider.GetAllRoles C# (CSharp) Method

GetAllRoles() public method

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