/// <summary>
 /// This method supports the framework directly and should not be used from your code
 /// </summary>
 /// <param name="handler">The handler.</param>
 /// <param name="context">The context.</param>
 /// <returns></returns>
 public static void Impl(ISetCookies handler, IContext context)
 {
     if (context.Request != null)
     {
         handler.ResponseCookies = context.Request.Cookies;
     }
 }
 public static bool Impl(ISetCookies e, IContext c)
 {
     return Called = true;
 }