I have just started working on Asp.Net Core. While using SignInManager class, I noticed that many methods of SignInManager class are async inluding
PasswordSignInAsync() and SignOutAsync()
According to answers of Why shouldn't all functions be async by default? ; "the purpose of async/await is to make it easier to write code in a world with many high latency operations".
I don't think that login related operations should have been considered as "high latency operations" so what is the idea behind of having async/await in SignInManager class?