.Net 4.8 project with C# and trying to tidy this function:
public class AuthorizationServiceProvider : OAuthAuthorizationServerProvider
{
public override async Task ValidateClientAuthentication(OAuthValidateClientAuthenticationContext Context)
{
Context.Validated();
}
}
It is flagging with this async method lacks ‘await’ operator, should I create some fake/dummy value/logic just to implement the await keyword? which would remove the warning on build? not a solution but would solve this
What is the best practice?