public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
 {
     PlatformAdaptor = new DesktopPlatformAdaptor();
     UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }
 public TwitterConnection(TwitterCredentials twitterCredentials)
 {
     PlatformAdaptor = new DesktopPlatformAdaptor();
     TwitterCredentials = twitterCredentials;
     UserSession = BuildUserSession();
 }
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
 {
     PlatformAdaptor = new DesktopPlatformAdaptor();
     ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
     UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
  }
Пример #4
0
 public TwitterConnection(TwitterCredentials twitterCredentials)
 {
     PlatformAdaptor    = new DesktopPlatformAdaptor();
     TwitterCredentials = twitterCredentials;
     UserSession        = BuildUserSession();
 }
Пример #5
0
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
 {
     PlatformAdaptor    = new DesktopPlatformAdaptor();
     ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
     UserSession        = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }
Пример #6
0
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
 {
     PlatformAdaptor = new DesktopPlatformAdaptor();
     UserSession     = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }