Home > Blockchain >  How to use attribute routing in asp.net core when the routing has dot/period in it
How to use attribute routing in asp.net core when the routing has dot/period in it

Time:04-22

How to use attribute routing in asp.net core when the routing has dot/period in it. Complex pattern in asp.net core /.net 6

CodePudding user response:

just like normal routing for example :

[Route("/download/v1.3")]
public IActionResult Download()
{
    return View();
}
  • Related