Get the Reqeust object from HttpContext.Current

Is it possible to get the Reqeust object from HttpContext.Current
I saving errors to database and would be great to be able to save the request object aswell

Thx!

System.Web.HttpContext hc = HttpContext.Current;
var requestObject = //Here i want to get the reqest object as a json string

if HttpContext.Current is not null you can use this conversion:

((AspNetRequest)HttpContext.Current.ToRequest()).Dto

Thx xplicit!

Exactly what i was looking for!