Here is my method It will take only one parameter . But I want user whaterver add in request body I need to save in logging.
[HttpPost]
[LogAPIUser]
public async Task<JsonResult> GameDetail(long game)
In ActionExecutingContext I have got only one action parameter
How can I get all body request data? If anyone have idea please let me know
Thanks in advance.