OwinMiddlwareClass
public class CustomMiddleware : OwinMiddleware | |
{ | |
public CustomMiddleware(OwinMiddleware next) : base(next) | |
{ | |
} | |
public async override Task Invoke(IOwinContext context) | |
{ | |
context.Response.Headers["MachineName"] = Environment.MachineName; | |
await Next.Invoke(context); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment