Load() public method

public Load ( Action cb = null ) : KnetikResult
cb Action
return KnetikResult
コード例 #1
0
ファイル: StoreQuery.cs プロジェクト: knetikmedia/UnitySDK
 public StoreQuery NextPage(Action<KnetikResult<StoreQuery>> cb = null)
 {
     var next = new StoreQuery (Client);
     next.PageIndex = PageIndex + 1;
     next.PageSize = PageSize;
     next.Terms = Terms;
     next.Related = Related;
     if (cb != null) {
         next.Load (cb);
     }
     return next;
 }