Should I use DateTime.Now or DateTime.UtcNow in HttpCookie.Expires and HttpCachePolicy.SetExpires?

Cookies are sending 'GMT' time, but I don't know what happen if I send DateTime.Now.AddDays(3) if I would be in GMT+5. Same with Expires HTTP header (sec 14.21).

What should I use?

Cheers.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

It doesn't matter in this case.

Internally, the first thing .SetExpires does is convert your supplied datetime into UTC, before setting it on the cookie.

Bear in mind, as long as your datetime consumer uses the DateTime class correctly, then the two are the same - it is just that one is "baselined" to UTC and the other isn't:

20110701T14:00:00-1:00 (British Summer Time)

and

20110701T13:00:00+0:00 (UTC)

represent exactly the same datetime, namely 1pm UTC.

As long as the consumer handles this correctly (which it seems to, having looked in reflector) then it makes no difference.

If you were taking this and passing it in as a time string, then of course, it may well make a difference, but not in this case.

You can see the effect with the following code (assuming you are not in UTC yourself - if you are - change your settings to test!). They both output the same datetime, once you've asked for it to be converted to UTC.

WriteDateTime(DateTime.Now);
WriteDateTime(DateTime.UtcNow);

public static void WriteDateTime(DateTime dateTime)
{
   Console.WriteLine(dateTime.ToUniversalTime().ToLongTimeString());   
}
link|improve this answer
perfect. Thanks! – NullOrEmpty Jan 31 '11 at 12:26
feedback

You should be using DateTime.UtcNow method because thats the time standard used for cookies. UTC is equivilant to GMT.

From MSDN: System.DateTime.UtcNow

Gets a DateTime object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).

Refer to this for an explanation between them.

link|improve this answer
I know. the problem is that even in the MSDN page, they use DateTime.Now msdn.microsoft.com/en-us/library/… and that's bugging me. I don't know if they just don't care o if HttpCookie.Expires already transform to GMT :P – NullOrEmpty Jan 31 '11 at 10:54
-1 - I don't believe this is correct - it shouldn't make any difference which you use. – Rob Levine Jan 31 '11 at 11:18
Rob, as you have pointed out the technically using either due to the implementation of the method will work. There are other considerations: – Phil Carson Feb 1 '11 at 10:33
such as that the output of the SetExpires method is a UTC DateTime so by passing in a UTC DateTime you show clarity of implementation. Another consideration although very unlikly in this case but important as a general principle if the implementation of the SetExpire method (a method outside our codebase) were to change so that it did not convert (or converted incorrectly) then a bug would be introduced into our code and then we would then a fix. (sorry for the split comment, I hit enter and then got interrupted while I was editing the comment ... ;) – Phil Carson Feb 1 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.