Как можно при каждом ответе серивиса добавлять в заголовок ответа два поля?
Добавил в Global.asax метод:
protected void Application_BeginRequest(object sender, EventArgs e)
{
Context.Response.Headers.Add("X-Frame-Options", "DENY");
Context.Response.Headers.Add("Content-Security-Policy", "frame-ancestors 'none'");
}
Пробывал добавлять в веб конфиге:
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
<add name="Content-Security-Policy" value="frame-ancestors 'none'" />
</customHeaders>
</httpProtocol>
Но в ответе сервиса их все ровно нет.