Skip to content

Instantly share code, notes, and snippets.

@ajamaeen
Created March 3, 2017 15:11
Show Gist options
  • Save ajamaeen/c77f4b6acff1b736b2a502e0f2f89aab to your computer and use it in GitHub Desktop.
Save ajamaeen/c77f4b6acff1b736b2a502e0f2f89aab to your computer and use it in GitHub Desktop.
public static class ImageMiddlewareExtensions
{
public static IApplicationBuilder
UseImageMiddleware(this IApplicationBuilder builder, string path)
{
builder.UseMiddleware(typeof(ImageMiddleware), path);
return builder;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment