extensions icon indicating copy to clipboard operation
extensions copied to clipboard

Support catch-all parameters in HTTP logging

Open xakep139 opened this issue 1 year ago • 0 comments

Currently HTTP logging component doesn't support catch-all parameters, e.g.:

public class MyController : ControllerBase
{
    [HttpGet("/catch-all/{*url}")]
    public ActionResult GetData([PrivateData] string url)
    {
        // ...
    }
}

xakep139 avatar Mar 11 '24 11:03 xakep139