我正在尝试以这种方式使用begin / end方法调用异步方法:
TwitterService service = new TwitterService(consumerKey, consumerSecret);
service.AuthenticateWith(accessToken, accessTokenSecret);
IAsyncResult result = service.BeginSendTweet("this is a test");
var sendTweetResult = service.EndSendTweet(result);
但是在运行时调用BeginSendTweet时出现了ArgumentNullException,我不明白为什么?有什么不对或我错过了什么?