From 59b32934e322660983322ceccf37dfc48da56a7f Mon Sep 17 00:00:00 2001 From: Brennan Date: Mon, 14 Dec 2015 08:27:59 -0800 Subject: [PATCH] Change Expires to DateTimeOffset --- src/Microsoft.AspNet.Http.Abstractions/CookieOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Http.Abstractions/CookieOptions.cs b/src/Microsoft.AspNet.Http.Abstractions/CookieOptions.cs index d2785db947..5cf29be6a2 100644 --- a/src/Microsoft.AspNet.Http.Abstractions/CookieOptions.cs +++ b/src/Microsoft.AspNet.Http.Abstractions/CookieOptions.cs @@ -34,7 +34,7 @@ namespace Microsoft.AspNet.Http /// Gets or sets the expiration date and time for the cookie. /// /// The expiration date and time for the cookie. - public DateTime? Expires { get; set; } + public DateTimeOffset? Expires { get; set; } /// /// Gets or sets a value that indicates whether to transmit the cookie using Secure Sockets Layer (SSL)�that is, over HTTPS only.