示例#1
0
 public Lists.Subscriptions.Result Subscriptions(Int32? count, String screen_name, String cursor)
 {
     var cm = new Lists.Subscriptions.Command();
     cm.count = count;
     cm.screen_name = screen_name;
     cm.cursor = cursor;
     return this.Subscriptions(cm);
 }
示例#2
0
 public Lists.Subscriptions.Result Subscriptions(Int32? count, Int64? user_id, String cursor)
 {
     var cm = new Lists.Subscriptions.Command();
     cm.count = count;
     cm.user_id = user_id;
     cm.cursor = cursor;
     return this.Subscriptions(cm);
 }
示例#3
0
 public Lists.Subscriptions.Result Subscriptions()
 {
     var cm = new Lists.Subscriptions.Command();
     return this.Subscriptions(cm);
 }