基本信息
源码名称:C# 心跳包 显示在线用户列表
源码大小:0.10M
文件格式:.rar
开发语言:C#
更新时间:2023-05-17
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
C# 心跳包 显示在线用户列表
通过客户端发送心跳包,包内容为用户名 和发送时间,服务端接受后返回给客户端,同时根据用户名和发送时间对在线列表 维护,并刷新在线用户。 可以开启多个客户端 同时连接 服务端,测试时需要在用户名一栏 输入...


文件清单
└── 心跳包练习
    ├── Client
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── Client.exe
    │   │   │   └── Client.pdb
    │   │   └── Release
    │   ├── Client.csproj
    │   ├── ClientForm.cs
    │   ├── ClientForm.Designer.cs
    │   ├── ClientForm.resx
    │   ├── obj
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── Client.Client.resources
    │   │           ├── Client.csproj.FileListAbsolute.txt
    │   │           ├── Client.exe
    │   │           ├── Client.pdb
    │   │           ├── Client.Properties.Resources.resources
    │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │           ├── GenerateResource-ResGen.read.1.tlog
    │   │           ├── GenerateResource-ResGen.write.1.tlog
    │   │           └── TempPE
    │   ├── Program.cs
    │   └── Properties
    │       ├── AssemblyInfo.cs
    │       ├── Resources.Designer.cs
    │       ├── Resources.resx
    │       ├── Settings.Designer.cs
    │       └── Settings.settings
    ├── Server
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── Server.exe
    │   │   │   ├── Server.pdb
    │   │   │   └── Server.vshost.exe
    │   │   └── Release
    │   ├── obj
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │           ├── GenerateResource-ResGen.read.1.tlog
    │   │           ├── GenerateResource-ResGen.write.1.tlog
    │   │           ├── Server.csproj.FileListAbsolute.txt
    │   │           ├── Server.exe
    │   │           ├── Server.pdb
    │   │           ├── Server.Properties.Resources.resources
    │   │           ├── Server.Server.resources
    │   │           └── TempPE
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Server.csproj
    │   ├── ServerForm.cs
    │   ├── ServerForm.Designer.cs
    │   └── ServerForm.resx
    ├── Service
    │   ├── bin
    │   │   └── Debug
    │   │       ├── Service.exe
    │   │       ├── Service.pdb
    │   │       ├── Service.vshost.exe
    │   │       └── Service.vshost.exe.manifest
    │   ├── obj
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │           ├── Service.csproj.FileListAbsolute.txt
    │   │           ├── Service.exe
    │   │           ├── Service.pdb
    │   │           └── TempPE
    │   ├── Program.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── Service.csproj
    ├── 心跳包练习.sln
    └── 心跳包练习.suo

27 directories, 54 files