Skip to content

Commit

Permalink
Changed noCache param to Ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hess committed Jul 17, 2012
1 parent f68e066 commit 6dd412b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SignalR.Client/Transports/HttpBasedTransport.cs
Expand Up @@ -129,7 +129,8 @@ protected string GetReceiveQueryString(IConnection connection, string data)

private static string GetNoCacheUrlParam()
{
return "noCache=" + DateTime.Now.ToString("yyyyMMddHHmmss");
//Updated to Ticks according to Samual Jack's comment
return "noCache=" + DateTime.Now.Ticks.ToString();
}

protected virtual Action<IRequest> PrepareRequest(IConnection connection)
Expand Down

1 comment on commit 6dd412b

@DamianEdwards
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As you've contributed to SignalR in the past, I need to contact you regarding some changes we're planning to the copyright and license. Can you please email me at dedward@microsoft.com.

Regards,
Damian Edwards

Please sign in to comment.