Advertisement
Guest User

Untitled

a guest
May 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. [Route("api/test")]
  2. public class TestController {
  3.  
  4. [HttpGet]
  5. [Route("/dostuff")]
  6. public void DoStuff(string p1, string p2) {
  7. //do whatever
  8. }
  9. }
  10.  
  11. //{baseurl}/api/test/dostuff?p1=param&p2=param
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement