Guest User

Untitled

a guest
Feb 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const string User = "SomeUser";
  2. const string Admin = "Admin";
  3. .
  4. .
  5. .
  6. [Authorize(Roles = $"{User},{Admin}")]
  7. public IHttpActionResult Get()
  8.  
  9. [Authorize(Roles = User + "," + Admin)]
  10. public IHttpActionResult Get()
Add Comment
Please, Sign In to add comment