Walter.Web.FireWall
Simulations Property (HeaderConfig)
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.Configurations Namespace > HeaderConfig Class : Simulations Property
The header simulations applied in the header protection rule engine.
Syntax
public HeaderSimulations Simulations {get;}
Remarks
Some versions of .net and ISS inject headers after the page was processed by your application.
Example
Remove the header with the default implementation of .net core MVC application
public static void Main(string[] args)
{
    CreateHostBuilder(args).Build().Run();
}
            
public static IHostBuilder CreateHostBuilder(string[] args) =>
     Host.CreateDefaultBuilder(args)
         .ConfigureWebHostDefaults(webBuilder =>
         {
            webBuilder.UseStartup<Startup>()
                      .UseKestrel(kestrel=> kestrel.AddServerHeader=false);
          });
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

HeaderConfig Class
HeaderConfig Members