真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在C#.NET中使用Socket框架-創(chuàng)新互聯(lián)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)怎么在C# .NET中使用Socket框架,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),灣里企業(yè)網(wǎng)站建設(shè),灣里品牌網(wǎng)站建設(shè),網(wǎng)站定制,灣里網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,灣里網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

1、首先簡單講下C#中Socket的簡單使用。

第一步:服務(wù)端監(jiān)聽某個(gè)端口

第二步:客戶端向服務(wù)端地址和端口發(fā)起Socket連接請求

第三步:服務(wù)端收到連接請求后創(chuàng)建Socket連接,并維護(hù)這個(gè)連接隊(duì)列。

第四步:客戶端和服務(wù)端已經(jīng)建立雙工通信(即雙向通信),客戶端和服務(wù)端可以輕松方便的給彼此發(fā)送信息。

至于簡單使用的具體實(shí)現(xiàn)代碼全部被我封裝到項(xiàng)目中了,如果需要學(xué)習(xí)簡單的實(shí)現(xiàn),可以看我的源碼,也可以自行百度,有很多的教程

2、核心,框架的使用

其實(shí),說其為框架,可能有點(diǎn)牽強(qiáng),因?yàn)槊總€(gè)人對框架都有自己的理解,但是類庫和框架又有什么本質(zhì)區(qū)別呢?全部都是代碼~哈哈,扯遠(yuǎn)了

首先,空說無憑,先放上所有的代碼:

服務(wù)端源文件:

SocketServer.cs

using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;

namespace Coldairarrow.Util.Sockets
{
 /// 
 /// Socket服務(wù)端
 /// 
 public class SocketServer
 {
  #region 構(gòu)造函數(shù)

  /// 
  /// 構(gòu)造函數(shù)
  /// 
  /// 監(jiān)聽的IP地址
  /// 監(jiān)聽的端口
  public SocketServer(string ip, int port)
  {
   _ip = ip;
   _port = port;
  }

  /// 
  /// 構(gòu)造函數(shù),監(jiān)聽IP地址默認(rèn)為本機(jī)0.0.0.0
  /// 
  /// 監(jiān)聽的端口
  public SocketServer(int port)
  {
   _ip = "0.0.0.0";
   _port = port;
  }

  #endregion

  #region 內(nèi)部成員

  private Socket _socket = null;
  private string _ip = "";
  private int _port = 0;
  private bool _isListen = true;
  private void StartListen()
  {
   try
   {
    _socket.BeginAccept(asyncResult =>
    {
     try
     {
      Socket newSocket = _socket.EndAccept(asyncResult);

      //馬上進(jìn)行下一輪監(jiān)聽,增加吞吐量
      if (_isListen)
       StartListen();

      SocketConnection newClient = new SocketConnection(newSocket, this)
      {
       HandleRecMsg = HandleRecMsg == null ? null : new Action(HandleRecMsg),
       HandleClientClose = HandleClientClose == null ? null : new Action(HandleClientClose),
       HandleSendMsg = HandleSendMsg == null ? null : new Action(HandleSendMsg),
       HandleException = HandleException == null ? null : new Action(HandleException)
      };

      newClient.StartRecMsg();
      ClientList.AddLast(newClient);

      HandleNewClientConnected?.Invoke(this, newClient);
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  #endregion

  #region 外部接口

  /// 
  /// 開始服務(wù),監(jiān)聽客戶端
  /// 
  public void StartServer()
  {
   try
   {
    //實(shí)例化套接字(ip4尋址協(xié)議,流式傳輸,TCP協(xié)議)
    _socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
    //創(chuàng)建ip對象
    IPAddress address = IPAddress.Parse(_ip);
    //創(chuàng)建網(wǎng)絡(luò)節(jié)點(diǎn)對象包含ip和port
    IPEndPoint endpoint = new IPEndPoint(address, _port);
    //將 監(jiān)聽套接字綁定到 對應(yīng)的IP和端口
    _socket.Bind(endpoint);
    //設(shè)置監(jiān)聽隊(duì)列長度為Int32大值(同時(shí)能夠處理連接請求數(shù)量)
    _socket.Listen(int.MaxValue);
    //開始監(jiān)聽客戶端
    StartListen();
    HandleServerStarted?.Invoke(this);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  /// 
  /// 所有連接的客戶端列表
  /// 
  public LinkedList ClientList { get; set; } = new LinkedList();

  /// 
  /// 關(guān)閉指定客戶端連接
  /// 
  /// 指定的客戶端連接
  public void CloseClient(SocketConnection theClient)
  {
   theClient.Close();
  }

  #endregion

  #region 公共事件

  /// 
  /// 異常處理程序
  /// 
  public Action HandleException { get; set; }

  #endregion

  #region 服務(wù)端事件

  /// 
  /// 服務(wù)啟動(dòng)后執(zhí)行
  /// 
  public Action HandleServerStarted { get; set; }

  /// 
  /// 當(dāng)新客戶端連接后執(zhí)行
  /// 
  public Action HandleNewClientConnected { get; set; }

  /// 
  /// 服務(wù)端關(guān)閉客戶端后執(zhí)行
  /// 
  public Action HandleCloseClient { get; set; }

  #endregion

  #region 客戶端連接事件

  /// 
  /// 客戶端連接接受新的消息后調(diào)用
  /// 
  public Action HandleRecMsg { get; set; }

  /// 
  /// 客戶端連接發(fā)送消息后回調(diào)
  /// 
  public Action HandleSendMsg { get; set; }

  /// 
  /// 客戶端連接關(guān)閉后回調(diào)
  /// 
  public Action HandleClientClose { get; set; }

  #endregion
 }
}
using System;
using System.Net.Sockets;
using System.Text;

namespace Coldairarrow.Util.Sockets
{
 /// 
 /// Socket連接,雙向通信
 /// 
 public class SocketConnection
 {
  #region 構(gòu)造函數(shù)

  public SocketConnection(Socket socket,SocketServer server)
  {
   _socket = socket;
   _server = server;
  }

  #endregion

  #region 私有成員
  
  private readonly Socket _socket;
  private bool _isRec=true;
  private SocketServer _server = null;
  private bool IsSocketConnected()
  {
   bool part1 = _socket.Poll(1000, SelectMode.SelectRead);
   bool part2 = (_socket.Available == 0);
   if (part1 && part2)
    return false;
   else
    return true;
  }

  #endregion

  #region 外部接口

  /// 
  /// 開始接受客戶端消息
  /// 
  public void StartRecMsg()
  {
   try
   {
    byte[] container = new byte[1024 * 1024 * 2];
    _socket.BeginReceive(container, 0, container.Length, SocketFlags.None, asyncResult =>
    {
     try
     {
      int length = _socket.EndReceive(asyncResult);

      //馬上進(jìn)行下一輪接受,增加吞吐量
      if (length > 0 && _isRec && IsSocketConnected())
       StartRecMsg();

      if (length > 0)
      {
       byte[] recBytes = new byte[length];
       Array.Copy(container, 0, recBytes, 0, length);

       //處理消息
       HandleRecMsg?.Invoke(recBytes, this, _server);
      }
      else
       Close();
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
      Close();
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
    Close();
   }
  }

  /// 
  /// 發(fā)送數(shù)據(jù)
  /// 
  /// 數(shù)據(jù)字節(jié)
  public void Send(byte[] bytes)
  {
   try
   {
    _socket.BeginSend(bytes, 0, bytes.Length, SocketFlags.None, asyncResult =>
    {
     try
     {
      int length = _socket.EndSend(asyncResult);
      HandleSendMsg?.Invoke(bytes, this, _server);
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  /// 
  /// 發(fā)送字符串(默認(rèn)使用UTF-8編碼)
  /// 
  /// 字符串
  public void Send(string msgStr)
  {
   Send(Encoding.UTF8.GetBytes(msgStr));
  }

  /// 
  /// 發(fā)送字符串(使用自定義編碼)
  /// 
  /// 字符串消息
  /// 使用的編碼
  public void Send(string msgStr,Encoding encoding)
  {
   Send(encoding.GetBytes(msgStr));
  }

  /// 
  /// 傳入自定義屬性
  /// 
  public object Property { get; set; }

  /// 
  /// 關(guān)閉當(dāng)前連接
  /// 
  public void Close()
  {
   try
   {
    _isRec = false;
    _socket.Disconnect(false);
    _server.ClientList.Remove(this);
    HandleClientClose?.Invoke(this, _server);
    _socket.Close();
    _socket.Dispose();
    GC.Collect();
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  #endregion

  #region 事件處理

  /// 
  /// 客戶端連接接受新的消息后調(diào)用
  /// 
  public Action HandleRecMsg { get; set; }

  /// 
  /// 客戶端連接發(fā)送消息后回調(diào)
  /// 
  public Action HandleSendMsg { get; set; }

  /// 
  /// 客戶端連接關(guān)閉后回調(diào)
  /// 
  public Action HandleClientClose { get; set; }

  /// 
  /// 異常處理程序
  /// 
  public Action HandleException { get; set; }

  #endregion
 }
}
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace Coldairarrow.Util.Sockets
{
 /// 
 /// Socket客戶端
 /// 
 public class SocketClient
 {
  #region 構(gòu)造函數(shù)

  /// 
  /// 構(gòu)造函數(shù),連接服務(wù)器IP地址默認(rèn)為本機(jī)127.0.0.1
  /// 
  /// 監(jiān)聽的端口
  public SocketClient(int port)
  {
   _ip = "127.0.0.1";
   _port = port;
  }

  /// 
  /// 構(gòu)造函數(shù)
  /// 
  /// 監(jiān)聽的IP地址
  /// 監(jiān)聽的端口
  public SocketClient(string ip, int port)
  {
   _ip = ip;
   _port = port;
  }

  #endregion

  #region 內(nèi)部成員

  private Socket _socket = null;
  private string _ip = "";
  private int _port = 0;
  private bool _isRec=true;
  private bool IsSocketConnected()
  {
   bool part1 = _socket.Poll(1000, SelectMode.SelectRead);
   bool part2 = (_socket.Available == 0);
   if (part1 && part2)
    return false;
   else
    return true;
  }

  /// 
  /// 開始接受客戶端消息
  /// 
  public void StartRecMsg()
  {
   try
   {
    byte[] container = new byte[1024 * 1024 * 2];
    _socket.BeginReceive(container, 0, container.Length, SocketFlags.None, asyncResult =>
    {
     try
     {
      int length = _socket.EndReceive(asyncResult);

      //馬上進(jìn)行下一輪接受,增加吞吐量
      if (length > 0 && _isRec && IsSocketConnected())
       StartRecMsg();

      if (length > 0)
      {
       byte[] recBytes = new byte[length];
       Array.Copy(container, 0, recBytes, 0, length);

       //處理消息
       HandleRecMsg?.Invoke(recBytes, this);
      }
      else
       Close();
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
      Close();
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
    Close();
   }
  }

  #endregion

  #region 外部接口

  /// 
  /// 開始服務(wù),連接服務(wù)端
  /// 
  public void StartClient()
  {
   try
   {
    //實(shí)例化 套接字 (ip4尋址協(xié)議,流式傳輸,TCP協(xié)議)
    _socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
    //創(chuàng)建 ip對象
    IPAddress address = IPAddress.Parse(_ip);
    //創(chuàng)建網(wǎng)絡(luò)節(jié)點(diǎn)對象 包含 ip和port
    IPEndPoint endpoint = new IPEndPoint(address, _port);
    //將 監(jiān)聽套接字 綁定到 對應(yīng)的IP和端口
    _socket.BeginConnect(endpoint, asyncResult =>
    {
     try
     {
      _socket.EndConnect(asyncResult);
      //開始接受服務(wù)器消息
      StartRecMsg();

      HandleClientStarted?.Invoke(this);
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  /// 
  /// 發(fā)送數(shù)據(jù)
  /// 
  /// 數(shù)據(jù)字節(jié)
  public void Send(byte[] bytes)
  {
   try
   {
    _socket.BeginSend(bytes, 0, bytes.Length, SocketFlags.None, asyncResult =>
    {
     try
     {
      int length = _socket.EndSend(asyncResult);
      HandleSendMsg?.Invoke(bytes, this);
     }
     catch (Exception ex)
     {
      HandleException?.Invoke(ex);
     }
    }, null);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  /// 
  /// 發(fā)送字符串(默認(rèn)使用UTF-8編碼)
  /// 
  /// 字符串
  public void Send(string msgStr)
  {
   Send(Encoding.UTF8.GetBytes(msgStr));
  }

  /// 
  /// 發(fā)送字符串(使用自定義編碼)
  /// 
  /// 字符串消息
  /// 使用的編碼
  public void Send(string msgStr, Encoding encoding)
  {
   Send(encoding.GetBytes(msgStr));
  }

  /// 
  /// 傳入自定義屬性
  /// 
  public object Property { get; set; }

  /// 
  /// 關(guān)閉與服務(wù)器的連接
  /// 
  public void Close()
  {
   try
   {
    _isRec = false;
    _socket.Disconnect(false);
    HandleClientClose?.Invoke(this);
   }
   catch (Exception ex)
   {
    HandleException?.Invoke(ex);
   }
  }

  #endregion

  #region 事件處理

  /// 
  /// 客戶端連接建立后回調(diào)
  /// 
  public Action HandleClientStarted { get; set; }

  /// 
  /// 處理接受消息的委托
  /// 
  public Action HandleRecMsg { get; set; }

  /// 
  /// 客戶端連接發(fā)送消息后回調(diào)
  /// 
  public Action HandleSendMsg { get; set; }

  /// 
  /// 客戶端連接關(guān)閉后回調(diào)
  /// 
  public Action HandleClientClose { get; set; }

  /// 
  /// 異常處理程序
  /// 
  public Action HandleException { get; set; }

  #endregion
 }
}

上面放上的是框架代碼,接下來介紹下如何使用

首先,服務(wù)端使用方式:

using Coldairarrow.Util.Sockets;
using System;
using System.Text;

namespace Console_Server
{
 class Program
 {
  static void Main(string[] args)
  {
   //創(chuàng)建服務(wù)器對象,默認(rèn)監(jiān)聽本機(jī)0.0.0.0,端口12345
   SocketServer server = new SocketServer(12345);

   //處理從客戶端收到的消息
   server.HandleRecMsg = new Action((bytes, client, theServer) =>
   {
    string msg = Encoding.UTF8.GetString(bytes);
    Console.WriteLine($"收到消息:{msg}");
   });

   //處理服務(wù)器啟動(dòng)后事件
   server.HandleServerStarted = new Action(theServer =>
   {
    Console.WriteLine("服務(wù)已啟動(dòng)************");
   });

   //處理新的客戶端連接后的事件
   server.HandleNewClientConnected = new Action((theServer, theCon) =>
   {
    Console.WriteLine($@"一個(gè)新的客戶端接入,當(dāng)前連接數(shù):{theServer.ClientList.Count}");
   });

   //處理客戶端連接關(guān)閉后的事件
   server.HandleClientClose = new Action((theCon, theServer) =>
   {
    Console.WriteLine($@"一個(gè)客戶端關(guān)閉,當(dāng)前連接數(shù)為:{theServer.ClientList.Count}");
   });

   //處理異常
   server.HandleException = new Action(ex =>
   {
    Console.WriteLine(ex.Message);
   });

   //服務(wù)器啟動(dòng)
   server.StartServer();

   while (true)
   {
    Console.WriteLine("輸入:quit,關(guān)閉服務(wù)器");
    string op = Console.ReadLine();
    if (op == "quit")
     break;
   }
  }
 }
}

客戶端使用方式:

using Coldairarrow.Util.Sockets;
using System;
using System.Text;

namespace Console_Client
{
 class Program
 {
  static void Main(string[] args)
  {
   //創(chuàng)建客戶端對象,默認(rèn)連接本機(jī)127.0.0.1,端口為12345
   SocketClient client = new SocketClient(12345);

   //綁定當(dāng)收到服務(wù)器發(fā)送的消息后的處理事件
   client.HandleRecMsg = new Action((bytes, theClient) =>
   {
    string msg = Encoding.UTF8.GetString(bytes);
    Console.WriteLine($"收到消息:{msg}");
   });

   //綁定向服務(wù)器發(fā)送消息后的處理事件
   client.HandleSendMsg = new Action((bytes, theClient) =>
   {
    string msg = Encoding.UTF8.GetString(bytes);
    Console.WriteLine($"向服務(wù)器發(fā)送消息:{msg}");
   });

   //開始運(yùn)行客戶端
   client.StartClient();

   while (true)
   {
    Console.WriteLine("輸入:quit關(guān)閉客戶端,輸入其它消息發(fā)送到服務(wù)器");
    string str = Console.ReadLine();
    if (str == "quit")
    {
     client.Close();
     break;
    }
    else
    {
     client.Send(str);
    }
   }
  }
 }
}

最后運(yùn)行測試截圖:

怎么在C# .NET中使用Socket框架

上述就是小編為大家分享的怎么在C# .NET中使用Socket框架了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文標(biāo)題:怎么在C#.NET中使用Socket框架-創(chuàng)新互聯(lián)
鏈接地址:http://weahome.cn/article/dcjjec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部