public static string GetContextId(HttpContextBase context)
        {
            var browserId = new BrowserId(context);

            return($"C{DateTime.UtcNow.Ticks}{SEPARATOR}{browserId.GetId()}");
        }
 public static string GetContextId(HttpContextBase context)
 {
     var browserId = new BrowserId(context);
     return $"C{DateTime.UtcNow.Ticks}{SEPARATOR}{browserId.GetId()}";
 }