我只是对某事有点困惑。创建表单身份验证票时,我一直在使用此代码。
var ticket = new FormsAuthenticationTicket(1,
userName,
DateTime.Now,
DateTime.Now.AddMinutes(30),
rememberMe,
userData,
FormsAuthentication.FormsCookiePath);
我的问题是这个。我应该使用本例所示的 DateTime.Now 还是 DateTime.UtcNow?