示例#1
0
 public static async Task <bool> PublishTweetWithGeoInReplyTo(ITweet tweet, double longitude, double latitude, long tweetIdToReplyTo)
 {
     return(await Sync.ExecuteTaskAsync(() => Tweet.PublishTweetWithGeoInReplyTo(tweet, longitude, latitude, tweetIdToReplyTo)));
 }
示例#2
0
 public static async Task <ITweet> PublishTweetWithGeoInReplyTo(string text, double longitude, double latitude, ITweet tweetToReplyTo)
 {
     return(await Sync.ExecuteTaskAsync(() => Tweet.PublishTweetWithGeoInReplyTo(text, longitude, latitude, tweetToReplyTo)));
 }
示例#3
0
 public static async Task <bool> PublishTweetWithGeoInReplyTo(ITweet tweet, ICoordinates coordinates, long tweetIdToReplyTo)
 {
     return(await Sync.ExecuteTaskAsync(() => Tweet.PublishTweetWithGeoInReplyTo(tweet, coordinates, tweetIdToReplyTo)));
 }
示例#4
0
 // Publish TweetInReplyTo With Geo info
 public static async Task <ITweet> PublishTweetWithGeoInReplyTo(string text, ICoordinates coordinates, ITweet tweetToReplyTo)
 {
     return(await Sync.ExecuteTaskAsync(() => Tweet.PublishTweetWithGeoInReplyTo(text, coordinates, tweetToReplyTo)));
 }