Esempio n. 1
0
        static void Main(string[] args)
        {
            const int port = 1234;
            //const string address = "192.168.56.1";
            var client = new ClientListener(port);

            client.Start();
        }
Esempio n. 2
0
 private void Giris_Clicked(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(Ip.Text))
     {
         //Socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
         ClientListener.Ip = Ip.Text;
         var result = ClientListener.Start();
         if (result)
         {
             Navigation.PushModalAsync(new NamePage());
         }
         else
         {
             Info.Text = "Ağa bağlanılamadı";
         }
         //try
         //{
         //    var result = Socket.BeginConnect(ip, 100, null, null);
         //    bool success = result.AsyncWaitHandle.WaitOne(500);
         //    if (success)
         //    {
         //        Socket.EndConnect(result);
         //        Navigation.PushModalAsync(new NamePage());
         //    }
         //    else
         //    {
         //        throw new SocketException(10060);
         //    }
         //}
         //catch (Exception)
         //{
         //    Socket.Close();
         //    Info.Text = "Ağa bağlanılamadı";
         //}
     }
 }