1 Star 0 Fork 0

程序员锡哥/csharp-network

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form1.cs 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
程序员锡哥 提交于 2016-08-28 21:20 . first commit
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;
using cgu_network;
namespace its_demo
{
public partial class Form1 : Form, IConnCallback, IRecvCallback
{
public Form1()
{
InitializeComponent();
client = new tcpclient();
}
private tcpclient client;
private void button1_Click(object sender, EventArgs e)
{
client.connect("127.0.0.1", 8234, this, this);
}
public void onConnect()
{
Console.Write("连接成功\n");
}
public void onError(string err)
{
Console.Write("发生错误:" + err + "\n");
}
public void onDisconnect()
{
Console.Write("连接已断开\n");
}
public void onRecv(byte[] data)
{
Console.WriteLine("收到数据:{0}", HexStringUtil.ByteToString(data));
}
private void button2_Click(object sender, EventArgs e)
{
client.send(Encoding.Unicode.GetBytes("世界你好"));
}
private void button3_Click(object sender, EventArgs e)
{
client.disconnect();
}
protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
{
client.disconnect();
base.OnClosing(e);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/msgy/csharp-network.git
git@gitee.com:msgy/csharp-network.git
msgy
csharp-network
csharp-network
master

搜索帮助