public FacebookConnect(SocialMediaAction socialMediaAction)
            : this()
        {
            this.socialMediaAction = socialMediaAction;

            this.webBrowser1.Navigate(FacebookClient.LOGIN_URL);
        }
        public FacebookConnect(SocialMediaAction socialMediaAction)
            : this()
        {
            this.socialMediaAction = socialMediaAction;

            this.webBrowser1.Navigate(FacebookClient.LOGIN_URL);
        }
Beispiel #3
0
        public SocialMediaConfig(Guid networkId, SocialMediaAction socialMediaAction)
            : this()
        {
            this.networkId         = networkId;
            this.socialMediaAction = socialMediaAction;

            InitUI();
        }
        public SocialMediaConfig(Guid networkId, SocialMediaAction socialMediaAction)
            : this()
        {
            this.networkId = networkId;
            this.socialMediaAction = socialMediaAction;

            InitUI();
        }
 public TwitterAuthentication(SocialMediaAction socialMediaAction)
     : this()
 {
     this.socialMediaAction = socialMediaAction;
 }