public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
 {
     PlatformAdaptor = new Win8RTPlatformAdaptor();
     ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
     UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
  }
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
 {
     PlatformAdaptor = new Win8RTPlatformAdaptor();
     UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
  } 
 public TwitterConnection(TwitterCredentials twitterCredentials)
 {
     PlatformAdaptor = new Win8RTPlatformAdaptor();
     TwitterCredentials = twitterCredentials;
     UserSession = BuildUserSession();
 }
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
 {
     PlatformAdaptor = new Win8RTPlatformAdaptor();
     UserSession     = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }
 public TwitterConnection(TwitterCredentials twitterCredentials)
 {
     PlatformAdaptor    = new Win8RTPlatformAdaptor();
     TwitterCredentials = twitterCredentials;
     UserSession        = BuildUserSession();
 }
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
 {
     PlatformAdaptor    = new Win8RTPlatformAdaptor();
     ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
     UserSession        = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }