public void TransformPostResponse(ref PostGameResponse retVal)
        {
            if (retVal.POST.ContainsKey("__gameId"))
            {
                retVal.POST["gid"] = retVal.POST["__gameId"];
                retVal.POST.Remove("__gameId");
            }

            if (retVal.POST.ContainsKey("__clientReqId"))
            {
                retVal.POST["cri"] = retVal.POST["__clientReqId"];
                retVal.POST.Remove("__clientReqId");
            }

            if (retVal.POST.ContainsKey("__rowId"))
            {
                retVal.POST["rid"] = retVal.POST["__rowId"];
                retVal.POST.Remove("__rowId");
            }
        }
 public void TransformPostResponse(ref PostGameResponse retVal)
 {
 }