1 Star 0 Fork 0

簞純/Sharpnetcat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Global.cs 623 Bytes
一键复制 编辑 原始数据 按行查看 历史
簞純 提交于 2021-03-12 20:51 . First commit
using System;
namespace Sharpnetcat
{
public class MessageEvent : EventArgs
{
public MessageEvent(string msg)
{
Content = msg;
}
public string Content { get; private set; }
}
public enum Instructions : ushort
{
Ping,
BasicMessage,
FileTransfert,
Pong,
Disconnect
}
public class TransfertEvent : EventArgs
{
public string Name { get; private set; }
public double Progress { get; set; }
public bool Done { get; set; }
public bool Inbound { get; private set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/qwqdanchun/Sharpnetcat.git
[email protected]:qwqdanchun/Sharpnetcat.git
qwqdanchun
Sharpnetcat
Sharpnetcat
main

搜索帮助