如果我想从Request.Url或从我的数据库中存储的某些设置中提取此值,如何在运行时在CookieAuthenticationOptions中设置CookieDOmain?
在配置此时,我无法访问其中任何一个.
保罗
解决方法
您可以指定自己的cookie提供者:
CookieAuthProvider myProvider = new CookieAuthProvider(); app.UseCookieAuthentication(new CookieAuthenticationOptions { AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,LoginPath = new PathString("/Account/Login"),Provider = myProvider });
要么实现自己的,要么只是继承现有的提供者:
public class CookieAuthProvider : CookieAuthenticationProvider { public override void ResponseSignIn(CookieResponseSignInContext context) { //Alter you cookie options //context.CookieOptions.Domain = "www..."; base.ResponseSignIn(context); } }
并实现ResponseSignIn,当端点在将信息转换为cookie之前提供了登录信息时,会调用它.通过实施该方法,可以改变进入票证的权利要求和额外信息.
您将传递CookieResponseSignInContext,它会公开可在ResponseSignIn调用期间替换或更改的CookieOptions属性.
> ICookieAuthenticationProvider
> CookieResponseSignInContext
> CookieAuthenticationHandler