public void getGameZoneList(ICsHttpListener callback)
 {
     this.mSDK.Call("getGameZoneList", new object[]
     {
         new CsTvInterface.AndroidHttpListener(callback)
     });
 }
 public void getSearchCategoryData(ICsHttpListener callback, string keyword, int type)
 {
     this.mSDK.Call("getSearchCategoryData", new object[]
     {
         new CsTvInterface.AndroidHttpListener(callback),
         keyword,
         type
     });
 }
 public void getSearchResultData(ICsHttpListener callback, string target, int pageSize, string breakpoint)
 {
     this.mSDK.Call("getSearchResultData", new object[]
     {
         new CsTvInterface.AndroidHttpListener(callback),
         target,
         pageSize,
         breakpoint
     });
 }
 public void getGameVideoList(ICsHttpListener callback, string gameId, int pageSize, string breakpoint)
 {
     this.mSDK.Call("getGameVideoList", new object[]
     {
         new CsTvInterface.AndroidHttpListener(callback),
         gameId,
         pageSize,
         breakpoint
     });
 }
 public AndroidHttpListener(ICsHttpListener listener) : base("tv.chushou.playsdklib.constants.OkHttpHandler")
 {
     this.listener = listener;
 }
示例#6
0
 public void requestSearchNavListData(ICsHttpListener callback, string targetKey, int pageSize, string breakpoint)
 {
 }
示例#7
0
 public void requestSearchCategoryData(ICsHttpListener callback, string keyword, int searchType)
 {
 }
示例#8
0
 public void requestGameZoneListData(ICsHttpListener callback)
 {
 }
示例#9
0
 public void requestGameVideoListData(ICsHttpListener callback, string targetKey, int pageSize, string breakpoint)
 {
 }