Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7617579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:11:08+00:00 2026-05-31T03:11:08+00:00

Is there some function in TweetSharp that could be used in a similar way

  • 0

Is there some function in TweetSharp that could be used in a similar way to my ‘IsFollowingMe’ below?

I’d like to check whether a user is following me before I attempt to send some private message.

TweetSharp.TwitterService service;
string screenName = "@some_one";
string someMessage = "Some Message";

if (service.IsFollowingMe(screenName))
{
       service.SendDirectMessage(screenName, someMessage);
   else
       NotifyThatSendingNotPossible();
}

First option to such approach is to use:

TweetSharp.TwitterService service;
TwitterCursorList<TwitterUser> followers = service.ListFollowers();

and then iterate through the result to find out if user is following my account. But this will eventually be ineffective when there are a lot of followers.

Another option is to execute service.SendDirectMessage and then check if the result is null or not. I tested such approach with success – however my application logic prefers to check in advance if sending is possible and based on this information should do different actions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T03:11:10+00:00Added an answer on May 31, 2026 at 3:11 am

    The answer is as follows:

    TweetSharp.TwitterService service;
    string fromUser = "@mr_sender";
    string toUser = "@some_one";
    string someMessage = "Some Message";
    
    TweetSharp.TwitterFriendship friendship = 
        service.GetFriendshipInfo(fromUser, toUser);
    
    if (friendship.Relationship.Source.CanDirectMessage.HasValue &&
       friendship.Relationship.Source.CanDirectMessage.Value)
    {
        service.SendDirectMessage(screenName, someMessage);
    }
    else
    {
        NotifyThatSendingNotPossible();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there some Haskell function that can take a list, say of doubles, like
Is there some cron like library that would let me schedule some function to
Is there some function, similar to srand() , that I need to call to
Is there some function in R of the form like: crossApply(v1, v2, func) that
Is there some function that returns the parent directory of a file in Perl?
Is there some function in haskell that evaluates to (filter p xs, filter (not.p)
Is there some way to write a function f :: (a -> b ->
So I have some function that receives N random 2D points. Is there any
Previously,I used the window.showModalDialog() function to popup a window: window.showModalDialog(myHtml) In myHtml,there are some
Firstly, I was wondering if there was some kind of built in function that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.