Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public partial class URLRewriter : IHttpModule
  2. {
  3. public void Init(HttpApplication context)
  4. {
  5. context.AuthorizeRequest += Context_AuthorizeRequest;
  6. }
  7. void Context_AuthorizeRequest(object sender, EventArgs e) => Process();
  8. public void Dispose() { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement