Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created January 18, 2023 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/3ec114a5e29f9d13aef04a693a6a7df9 to your computer and use it in GitHub Desktop.
Save lgolubyev/3ec114a5e29f9d13aef04a693a6a7df9 to your computer and use it in GitHub Desktop.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.Use(async (context, next) =>
{
context.Response.Header.Add("X-Frame-Options", "DENY");
await next();
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment