/// <summary>
 /// Gets the most recent mentions (tweets containing the users's @screen_name) for the authenticated user.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 /// <returns>An instance of <see cref="SocialHttpResponse"/> representing the raw response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-mentions_timeline</cref>
 /// </see>
 public SocialHttpResponse GetMentionsTimeline(TwitterGetMentionsTimelineOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("https://api.twitter.com/1.1/statuses/mentions_timeline.json", options));
 }
示例#2
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)));
 }