示例#1
0
 internal PageManager(TidalClient client, string path, int itemsPerPage,
                      List <KeyValuePair <string, string> > queryString = null)
     : base(itemsPerPage)
 {
     this.Client      = client;
     this.Path        = path;
     this.QueryString = queryString;
 }
 internal PlaylistPageManager(TidalClient client, string path, int itemsPerPage, List <KeyValuePair <string, string> > queryString = null)
     : base(client, path, itemsPerPage, queryString)
 {
 }
示例#3
0
 public GenericPageManager(TidalClient client, string path, int itemsPerPage, List <KeyValuePair <string, string> > queryString = null) : base(client, path, itemsPerPage, queryString)
 {
 }