我正在使用 TweetSharp,但无法使用“搜索”功能。我试图找到它,但在每个例子中,我看到第二个参数是一个整数,它不起作用。
TwitterService service = new TwitterService(consumerKey, consumerSecret);
service.AuthenticateWith(accessToken, tokenSecret);
var options = new SearchOptions { Q = "stackoverflow" };
XmlDocument xmlTwitterPost = new XmlDocument();
xmlTwitterPost.Load(@"c:\socialShare.xml");
xmlTwitterPost.LoadXml("<TableBox></TableBox>");
foreach (var tweet in service.Search(options,))
{..
}
我无法找到插入第二个参数的方法,即:
System.Action<TweetSharp.TwitterSearchResult,TweetSharp.TwitterResponse>
谁能帮我?