HttpCookie.Expires 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置此 Cookie 的过期日期和时间。
public:
property DateTime Expires { DateTime get(); void set(DateTime value); };
public DateTime Expires { get; set; }
member this.Expires : DateTime with get, set
Public Property Expires As DateTime
属性值
此 Cookie 的过期时间(在客户端)。
示例
下面的代码示例将 Cookie 的过期时间设置为从当前时间开始的 10 分钟。
MyCookie.Expires = DateTime.Now.AddMinutes(10.0);
MyCookie.Expires = DateTime.Now.AddMinutes(10.0)