亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# 中怎么利用networkcomms 3.0實現模擬登陸

發布時間:2021-07-07 18:02:42 來源:億速云 閱讀:131 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關C# 中怎么利用networkcomms 3.0實現模擬登陸,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

新建服務器

C# 中怎么利用networkcomms 3.0實現模擬登陸

using MessageContract;
using NetworkCommsDotNet;
using NetworkCommsDotNet.Connections;
using NetworkCommsDotNet.Connections.TCP;
using NetworkCommsDotNet.DPSBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Windows.Forms;
namespace AppServer
{
  public partial class MaiForm : Form
  {
    public MaiForm()
    {
      InitializeComponent();
    }
    SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);
    private void button1_Click(object sender, EventArgs e)
    {
      //服務器開始監聽客戶端的請求
      Connection.StartListening(ConnectionType.TCP, new IPEndPoint(IPAddress.Parse(txtIP.Text), int.Parse(txtPort.Text)));
      //服務器開始監聽客戶端的請求      
      //IPEndPoint thePoint = new IPEndPoint(IPAddress.Parse(txtIP.Text), int.Parse(txtPort.Text));
      //TCPConnection.StartListening(thePoint, false);
      button1.Text = "監聽中";
      button1.Enabled = false;
      //button1.Text = "監聽中";
      //button1.Enabled = false;
      //此方法中包含服務器具體的處理方法。
      StartListening();
    }
    private void StartListening()
    {
      //開啟日志記錄 
      //配置日志記錄器
      //ILogger logger = new LiteLogger(LiteLogger.LogMode.ConsoleAndLogFile, "ServerLogFile_" + NetworkComms.NetworkIdentifier + ".txt");
      //NetworkComms.EnableLogging(logger);
      //禁用日志記錄 服務器端正式使用時,贏禁用日志記錄
      NetworkComms.DisableLogging();
      //服務器端處理收到的消息
      //為簡單起見,此示例中我們只處理字符類型的信息,也返回字符類型的信息。
      //處理的信息可以使自定義類,具體見下一個Demo
      NetworkComms.AppendGlobalIncomingPacketHandler<LoginContract>("ReqLogin", IncomingLoginRequest);
    }
    //處理某個具體的請求
    private void IncomingLoginRequest(PacketHeader header, Connection connection, LoginContract loginContract)
    {
      try
      {
        string resMsg = "";
        //為了簡單,這里不調用數據庫,而是模擬一下登錄
        if (loginContract.UserID == "1000" && loginContract.PassWord == "123")
          resMsg = "登錄成功";
        else
          resMsg = "用戶名密碼錯誤";
        //把返回結果寫入到契約類中,后面返回給客戶端
        //ResMsgContract contract = new ResMsgContract();
        //contract.Message = resMsg;
        //connection.SendObject<ResMsgContract>("ResLogin", contract);
        ResMsgContract contract = new ResMsgContract();
        contract.Message = resMsg;
        connection.SendObject("ResLogin", contract);
      }
      catch (Exception ex)
      {
        // LogTools.LogException(ex, "IncomingMsgHandle");
      }
    }
  }
}

在別的幫助中往往少了這行:導致出現客戶端發送時,類型打包出現問題. 這行代碼是客戶端服務器兩端都要加上的,是指定傳輸方式

 SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);

就是這個報錯了

C# 中怎么利用networkcomms 3.0實現模擬登陸

一下是客戶端

C# 中怎么利用networkcomms 3.0實現模擬登陸

using MessageContract;
using NetworkCommsDotNet;
using NetworkCommsDotNet.Connections;
using NetworkCommsDotNet.Connections.TCP;
using NetworkCommsDotNet.DPSBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AppClient
{
  public partial class MainForm : Form
  {
    public MainForm()
    {
      InitializeComponent();
    }
    //連接信息對象
    public ConnectionInfo connInfo = null;
    //連接對象
    Connection newTcpConnection;
    SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);
    private void button1_Click(object sender, EventArgs e)
    {
      //給連接信息對象賦值
      connInfo = new ConnectionInfo(txtIP.Text, int.Parse(txtPort.Text));
      //如果不成功,會彈出異常信息
      newTcpConnection = TCPConnection.GetConnection(connInfo);
      button1.Enabled = false;
      button1.Text = "連接成功";
    }
    private void btnlogin_Click(object sender, EventArgs e)
    {
      //給契約類賦值
      LoginContract contract = new LoginContract(txtUserName.Text, txtPassword.Text);
      //contract.UserID = txtUserName.Text;
      //contract.PassWord = txtPassword.Text;
      //向服務器發送登錄信息并獲取登錄結果
       ResMsgContract resMsg = newTcpConnection.SendReceiveObject<LoginContract, ResMsgContract>("ReqLogin", "ResLogin", 5000, contract);
      //向服務器發送登錄信息并獲取登錄結果
      // ResMsgContract resMsg = newTcpConnection.SendReceiveObject<ResMsgContract>("ReqLogin", "ResLogin", 5000, contract);
      if (resMsg.Message == "登錄成功")
      {
        MessageBox.Show("登錄成功");
      }
      else
      {
        MessageBox.Show("用戶名密碼錯誤");
      }
    }
  }
}

契約類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MessageContract
{
  [ProtoContract]
  public class LoginContract
  {
    [ProtoMember(1)]
    public string UserID { get; set; }
    [ProtoMember(2)]
    public string PassWord { get; set; }
    public LoginContract() { }
    public LoginContract(string userID, string passWord)
    {
      this.UserID = userID;
      this.PassWord = passWord;
    }
  }
}
using ProtoBuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MessageContract
{
  [ProtoContract]
  public class ResMsgContract
  {
    [ProtoMember(1)]
    public string Message;
    public ResMsgContract() { }
    public ResMsgContract(string message)
    {
      this.Message = message;
    }
  }
}

注意:

使用這個框架要配合谷歌的protobuf   要選好版本.本人沒重復測試最高版本,因為在調試登錄過程中出現別的問題過程中,也順改了protobuf 的版本,至今未測試最高版本是否存在兼容問題.本人成功的使用的是2.0.0.668

    protobuf簡介protobuf是google提供的一個開源序列化框架,類似于XML,JSON這樣的數據表示語言,其最大的特點是基于二進制,因此比傳統的XML表示高效短小

vs nuget添加方式

C# 中怎么利用networkcomms 3.0實現模擬登陸

輸入

C# 中怎么利用networkcomms 3.0實現模擬登陸

版本選擇自己指定一下,加大項目的契約類里邊.這是自己定義傳輸對象的方式.

C# 中怎么利用networkcomms 3.0實現模擬登陸

 結果:

C# 中怎么利用networkcomms 3.0實現模擬登陸

以上就是C# 中怎么利用networkcomms 3.0實現模擬登陸,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桃源县| 辽宁省| 莒南县| 塔城市| 阿瓦提县| 忻州市| 明光市| 朝阳区| 营山县| 邹平县| 贵南县| 监利县| 津南区| 湖口县| 泸水县| 时尚| 秭归县| 仁布县| 永和县| 三门县| 湘阴县| 高州市| 越西县| 碌曲县| 台湾省| 荣成市| 晋江市| 南汇区| 永济市| 临沧市| 周口市| 昔阳县| 海原县| 荆门市| 陵川县| 广西| 济阳县| 尚义县| 佛山市| 商洛市| 哈尔滨市|