Приложение падает при попытке соединения через сокет - C#

Узнай цену своей работы

Формулировка задачи:

Листинг программы
  1. IPEndPoint ipEndPoint = new IPEndPoint(ip, port);
  2. Socket sListener = new Socket(ipAddr.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
  3. sListener.Bind(ipEndPoint);
  4. sListener.Listen(10);
  5. while (true)
  6. {
  7. Socket handler = sListener.Accept();
  8. }
при попытке аццепта приложение просто закрывается. в чём может быть проблема?

Решение задачи: «Приложение падает при попытке соединения через сокет»

textual
Листинг программы
  1. using System;
  2. using System.Net;
  3. using System.Net.Mail;
  4. using System.Net.Mime;
  5. using System.Threading;
  6. using System.ComponentModel;
  7. namespace Examples.SmptExamples.Async
  8. {
  9.     public class SimpleAsynchronousExample
  10.     {
  11.         static bool mailSent = false;
  12.         private static void SendCompletedCallback(object sender, AsyncCompletedEventArgs e)
  13.         {
  14.             // Get the unique identifier for this asynchronous operation.
  15.             String token = (string)e.UserState;
  16.  
  17.             if (e.Cancelled)
  18.             {
  19.                 Console.WriteLine("[{0}] Send canceled.", token);
  20.             }
  21.             if (e.Error != null)
  22.             {
  23.                 Console.WriteLine("[{0}] {1}", token, e.Error.ToString());
  24.             }
  25.             else
  26.             {
  27.                 Console.WriteLine("Message sent.");
  28.             }
  29.             mailSent = true;
  30.         }
  31.         public static void Main(string[] args)
  32.         {
  33.             // Command line argument must the the SMTP host.
  34.             SmtpClient client = new SmtpClient("localhost");
  35.             // Specify the e-mail sender.
  36.             // Create a mailing address that includes a UTF8 character
  37.             // in the display name.
  38.             MailAddress from = new MailAddress("jane@contoso.com",
  39.                "Jane " + (char)0xD8 + " Clayton",
  40.             System.Text.Encoding.UTF8);
  41.             // Set destinations for the e-mail message.
  42.             MailAddress to = new MailAddress("ben@contoso.com");
  43.             // Specify the message content.
  44.             MailMessage message = new MailMessage(from, to);
  45.             message.Body = "This is a test e-mail message sent by an application. ";
  46.             // Include some non-ASCII characters in body and subject.
  47.             string someArrows = new string(new char[] { '\u2190', '\u2191', '\u2192', '\u2193' });
  48.             message.Body += Environment.NewLine + someArrows;
  49.             message.BodyEncoding = System.Text.Encoding.UTF8;
  50.             message.Subject = "test message 1" + someArrows;
  51.             message.SubjectEncoding = System.Text.Encoding.UTF8;
  52.             // Set the method that is called back when the send operation ends.
  53.             client.SendCompleted += new
  54.             SendCompletedEventHandler(SendCompletedCallback);
  55.             // The userState can be any object that allows your callback
  56.             // method to identify this send operation.
  57.             // For this example, the userToken is a string constant.
  58.             string userState = "test message1";
  59.             client.SendAsync(message, userState);
  60.             Console.WriteLine("Sending message... press c to cancel mail. Press any other key to exit.");
  61.             string answer = Console.ReadLine();
  62.             // If the user canceled the send, and mail hasn't been sent yet,
  63.             // then cancel the pending operation.
  64.             if (answer.StartsWith("c") && mailSent == false)
  65.             {
  66.                 client.SendAsyncCancel();
  67.             }
  68.             // Clean up.
  69.             message.Dispose();
  70.             Console.WriteLine("Goodbye.");
  71.         }
  72.     }
  73. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

10   голосов , оценка 4.3 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы