Created
February 4, 2014 13:56
-
-
Save jbogard/8803982 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PdfModule : IHttpModule | |
{ | |
public void Init(HttpApplication context) | |
{ | |
context.PreRequestHandlerExecute += context_BeginRequest; | |
} | |
private void context_BeginRequest(object sender, EventArgs e) | |
{ | |
var httpApplication = (HttpApplication) sender; | |
if (httpApplication.Request.Params["Pdf"] == null) | |
return; | |
httpApplication.Response.Clear(); | |
httpApplication.Response.AddHeader("Content-Type", "application/pdf"); | |
var baseUrl = string.Format("{0}://{1}{2}/", httpApplication.Request.Url.Scheme, | |
httpApplication.Request.Url.Authority, httpApplication.Request.ApplicationPath.TrimEnd('/')); | |
httpApplication.Response.Filter = new PdfFilter(httpApplication.Response.Filter, baseUrl); | |
} | |
public void Dispose() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment