Come posso creare usando C # e HttpClient la seguente richiesta POST:
Ho bisogno di una tale richiesta per il mio servizio API WEB:
[ActionName("exist")]
[HttpPost]
public bool CheckIfUserExist([FromBody] string login)
{
return _membershipProvider.CheckIfExist(login);
}