Наследование: IPlatformAdaptor
		public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
		{
			PlatformAdaptor = new IOSPlatformAdaptor();
			UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
		} 
		public TwitterConnection(TwitterCredentials twitterCredentials)
		{
			PlatformAdaptor = new IOSPlatformAdaptor();
			TwitterCredentials = twitterCredentials;
			UserSession = BuildUserSession();
		}
		public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
		{
			PlatformAdaptor = new IOSPlatformAdaptor();
			ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
			UserSession = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
		}
Пример #4
0
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret, string xauthusername, string xauthpassword)
 {
     PlatformAdaptor = new IOSPlatformAdaptor();
     UserSession     = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }
Пример #5
0
 public TwitterConnection(TwitterCredentials twitterCredentials)
 {
     PlatformAdaptor    = new IOSPlatformAdaptor();
     TwitterCredentials = twitterCredentials;
     UserSession        = BuildUserSession();
 }
Пример #6
0
 public TwitterConnection(string twitterConsumerKey, string twitterConsumerSecret)
 {
     PlatformAdaptor    = new IOSPlatformAdaptor();
     ApplicationSession = BuildApplicationSession(twitterConsumerKey, twitterConsumerSecret);
     UserSession        = BuildUserSession(twitterConsumerKey, twitterConsumerSecret);
 }