Guest User

Untitled

a guest
Feb 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. services.AddScoped<IUrlHelper>(x =>
  2. {
  3. var actionContext = x.GetService<IActionContextAccessor>().ActionContext;
  4. return new MyCustomUrlHelper(actionContext);
  5. });
Add Comment
Please, Sign In to add comment