示例#1
0
 public Search.Tweets.Result Tweets(String q, Int32? count, String since_id, String max_id, String geocode, String lang, String locale, String result_type, String until, Boolean? include_entities, String callback)
 {
     var cm = new Search.Tweets.Command();
     cm.q = q;
     cm.count = count;
     cm.since_id = since_id;
     cm.max_id = max_id;
     cm.geocode = geocode;
     cm.lang = lang;
     cm.locale = locale;
     cm.result_type = result_type;
     cm.until = until;
     cm.include_entities = include_entities;
     cm.callback = callback;
     return this.Tweets(cm);
 }
示例#2
0
 public Search.Tweets.Result Tweets(String q)
 {
     var cm = new Search.Tweets.Command();
     cm.q = q;
     return this.Tweets(cm);
 }
示例#3
0
 public Search.Tweets.Result Tweets(String q, String since_id, String max_id)
 {
     var cm = new Search.Tweets.Command();
     cm.q = q;
     cm.since_id = since_id;
     cm.max_id = max_id;
     return this.Tweets(cm);
 }
示例#4
0
 public Search.Tweets.Result[] Tweets(Search.Tweets.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Search.Tweets.Command, Search.Tweets.Result[]>(command));
 }