示例#1
0
 public static void GetCategory(string token, int cid, ResponseHandle handle)
 {
     ApiCaller.RequestParams rp = new ApiCaller.RequestParams();
     rp.data = new Dictionary <string, string>();
     rp.data.Add(Param.CID, "" + cid);
     rp.data.Add(Param.TOKEN, token);
     rp.callback = handle;
     apiCaller.GetCategory(rp);
 }