Load() public method

public Load ( Action cb = null ) : KnetikResult
cb Action
return KnetikResult
 public AchievementsQuery NextPage(Action<KnetikResult<AchievementsQuery>> cb = null)
 {
     var next = new AchievementsQuery (Client, IsForUser);
     next.PageIndex = PageIndex + 1;
     next.PageSize = PageSize;
     if (cb != null) {
         next.Load (cb);
     }
     return next;
 }