コード例 #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;
 }
コード例 #2
0
 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)
 {
 }