public void ScrapTweetAndReply()
 {
     try
     {
         if (!IsLoggedIn)
         {
             Login();
         }
         if (IsLoggedIn)
         {
             if (IsNotSuspended)
             {
                 ReplyInterface.ReplyInterface obj_ReplyInterface = new ReplyInterface.ReplyInterface(Username, userID, Password, Screen_name, proxyAddress, proxyPort, proxyUsername, proxyPassword);
                 obj_ReplyInterface.GetScrapTweetAndReply(ref globusHttpHelper, ref userID, ref Username, ref Screen_name, ref postAuthenticityToken);
             }
         }
     }
     catch
     {
     }
 }
 public void ReplyThroughReplyInterface(string postAuthenticityToken, string tweetID, string tweetUserName, string screenName, string tweetMessage, string userName)
 {
     try
     {
         if (!IsLoggedIn)
         {
             Login();
         }
         if (IsLoggedIn)
         {
             if (IsNotSuspended)
             {
                 ReplyInterface.ReplyInterface obj_ReplyInterface = new ReplyInterface.ReplyInterface(Username, userID, Password, Screen_name, proxyAddress, proxyPort, proxyUsername, proxyPassword);
                 obj_ReplyInterface.Reply(ref globusHttpHelper, postAuthenticityToken, tweetID, tweetUserName, screenName, tweetMessage, userName);
             }
         }
     }
     catch
     {
     }
 }