服务堆栈设置 HttpCookie.Secure 标志/属性?
Service Stack set HttpCookie.Secure Flag / Attribute?
我正在尝试在会话 Cookie 上设置安全标志(即 https://www.owasp.org/index.php/SecureFlag)。
我尝试过:
public override void Configure(Container container)
{
...
Config.OnlySendSessionCookiesSecurely = true;
...
}
没有成功 - 在 Fiddler、Chrome 开发人员工具等中查看时 - 未设置安全标志。任何帮助将不胜感激。
配置ServiceStack时需要使用SetConfig()
,例如:
SetConfig(new HostConfig {
OnlySendSessionCookiesSecurely = true,
});
我正在尝试在会话 Cookie 上设置安全标志(即 https://www.owasp.org/index.php/SecureFlag)。
我尝试过:
public override void Configure(Container container)
{
...
Config.OnlySendSessionCookiesSecurely = true;
...
}
没有成功 - 在 Fiddler、Chrome 开发人员工具等中查看时 - 未设置安全标志。任何帮助将不胜感激。
配置ServiceStack时需要使用SetConfig()
,例如:
SetConfig(new HostConfig {
OnlySendSessionCookiesSecurely = true,
});