예제 #1
0
        public MainPage()
        {
            this.InitializeComponent();
            HttpClientBasic client = new HttpClientBasic();

            client.getClient();
        }
예제 #2
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            string mail_str     = mail.Text;
            string password_str = passwd.Text;
            string url          = "http://iosvm.cloudapp.net/ideabox/user/login";

            if (mail_str.Length > 0 && password_str.Length > 0)
            {
                HttpClientBasic httpClinet = new HttpClientBasic();
            }
        }
예제 #3
0
 public MainPage()
 {
     this.InitializeComponent();
     HttpClientBasic client = new HttpClientBasic();
     client.getClient();
 }
예제 #4
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            string mail_str = mail.Text;
            string password_str = passwd.Text;
            string url = "http://iosvm.cloudapp.net/ideabox/user/login";
            if (mail_str.Length > 0 && password_str.Length > 0)
            {
                HttpClientBasic httpClinet = new HttpClientBasic();

            }
        }