The following give me args=null when I POST with a body {"args": 222}. How can I get the member of the body into my variable args (or the entire body into a variable body)
[HttpPost("{className}/{methodName}")]
public ActionResult<string> Post(string className, string methodName, string args){}