AuthProviderSync LogoutAsync should return response from Logout

Hello,

I think AuthProviderSync implemantation of LogoutAsync should return response from Logout, that could be for example redirect.

public Task LogoutAsync(IServiceBase service, Authenticate request, CancellationToken token = default)
{
// Logout(service, request);
// return TypeConstants.EmptyTask;
// Should return response from Logout()
var response = Logout(service, request);
return response.InTask();
}

Reference:

Yeah it should’ve been, fixed in this commit, this change is available from the latest v5.10.3 that’s now on MyGet.