• 大小: 0.35M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: Socket  C#  c  通信  t  

资源简介

服务端有客户端的链接列表

资源截图

代码片段和文件信息

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 System.Threading;
using System.Net.Sockets;
using System.Net;
using System.Diagnostics;
using System.IO;
using FileSearch;

namespace SocketClient
{
    public partial class Main : Form
    {
        //创建 1个客户端套接字 和1个负责监听服务端请求的线程  
        Thread threadclient = null;
        Socket socketclient = null;

        public Main()
        {
            InitializeComponent();

            StartPosition = FormStartPosition.CenterScreen;
            //关闭对文本框的非法线程操作检查  
            TextBox.CheckForIllegalCrossThreadCalls = false;

            this.btnSendMessage.Enabled = false;
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8192  2018-02-28 22:42  bin\Debug\AppConfig.dll

     文件      24064  2018-02-28 22:42  bin\Debug\AppConfig.pdb

     文件       5632  2018-02-28 22:47  bin\Debug\CommonUp.exe

     文件      11776  2018-02-28 22:47  bin\Debug\CommonUp.pdb

     文件       6656  2018-02-28 22:38  bin\Debug\FileSearch.exe

     文件      17920  2018-02-28 22:38  bin\Debug\FileSearch.pdb

     文件     217088  2018-02-20 11:18  bin\Debug\ICSharpCode.SharpZipLib.dll

     文件      14848  2018-02-28 22:47  bin\Debug\SocketClient.exe

     文件        189  2018-02-13 13:14  bin\Debug\SocketClient.exe.config

     文件      28160  2018-02-28 22:47  bin\Debug\SocketClient.pdb

     文件      22696  2018-03-01 13:09  bin\Debug\SocketClient.vshost.exe

     文件        189  2018-02-13 13:14  bin\Debug\SocketClient.vshost.exe.config

     文件        490  2016-07-16 19:44  bin\Debug\SocketClient.vshost.exe.manifest

     文件       7680  2018-02-28 22:47  bin\Debug\ZipConsole.dll

     文件      15872  2018-02-28 22:47  bin\Debug\ZipConsole.pdb

     文件          0  2018-03-07 18:25  obj\Debug\build.force

     文件       1464  2018-02-26 10:36  obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       7359  2018-02-26 19:49  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件         42  2018-03-07 17:59  obj\Debug\SocketClient.csproj.CoreCompileInputs.cache

     文件       1533  2018-03-01 13:09  obj\Debug\SocketClient.csproj.FileListAbsolute.txt

     文件       1012  2018-02-28 22:38  obj\Debug\SocketClient.csproj.GenerateResource.Cache

     文件      57711  2018-03-07 21:49  obj\Debug\SocketClient.csprojResolveAssemblyReference.cache

     文件      14848  2018-02-28 22:47  obj\Debug\SocketClient.exe

     文件        180  2018-02-28 22:47  obj\Debug\SocketClient.Main.resources

     文件      28160  2018-02-28 22:47  obj\Debug\SocketClient.pdb

     文件        180  2018-02-28 22:47  obj\Debug\SocketClient.Properties.Resources.resources

     文件          0  2018-02-13 13:14  obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2018-02-13 13:14  obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2018-02-13 13:14  obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件          0  2018-03-07 18:09  obj\Release\build.force

............此处省略28个文件信息

评论

共有 条评论