示例#1
0
 /// <summary>
 /// Gets the most recent mentions (tweets containing the users's @screen_name) for the authenticating user.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 /// <returns>An instance of <see cref="TwitterGetMentionsTimelineResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-mentions_timeline</cref>
 /// </see>
 public TwitterGetMentionsTimelineResponse GetMentionsTimeline(TwitterGetMentionsTimelineOptions options)
 {
     return(TwitterGetMentionsTimelineResponse.ParseResponse(Raw.GetMentionsTimeline(options)));
 }
示例#2
0
 /// <summary>
 /// Gets the most recent mentions (tweets containing the users's @screen_name) for the authenticating user.
 /// </summary>
 /// <param name="count">The maximum amount of tweets to return.</param>
 /// <returns>An instance of <see cref="TwitterGetMentionsTimelineResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-mentions_timeline</cref>
 /// </see>
 public TwitterGetMentionsTimelineResponse GetMentionsTimeline(int count)
 {
     return(TwitterGetMentionsTimelineResponse.ParseResponse(Raw.GetMentionsTimeline(count)));
 }