• 大小: 0.08M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 网络  会议    通信    

资源简介


设计一个利用多播技术开展网络会议讨论的通信程序


资源截图

代码片段和文件信息

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

namespace 会议
{
    public partial class 多播会议讨论程序 : Form
    {
        Socket socket;
        Thread recvThread;
        IPAddress address = IPAddress.Parse(“234.5.6.8“);
        IPEndPoint multiIPEndPoint;

        public 多播会议讨论程序()//窗体程序
        {
            InitializeComponent();
            this.txt.Text = ““;
            multiIPEndPoint = new IPEndPoint(address6000);//234.5.6组号,成员通过套接字方法添加或删除成员

            socket = new Socket(AddressFamily.InterNetwork SocketType.Dgram ProtocolType.Udp);//数据包套

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         860  2018-10-09 09:56  会议.sln
     文件       19968  2018-10-14 10:27  会议.suo
     目录           0  2018-10-09 09:56  会议\
     目录           0  2018-10-09 09:56  会议\bin\
     目录           0  2018-10-09 10:48  会议\bin\Debug\
     文件       11776  2018-10-13 21:04  会议\bin\Debug\会议.exe
     文件       26112  2018-10-13 21:04  会议\bin\Debug\会议.pdb
     文件       11600  2018-10-14 09:44  会议\bin\Debug\会议.vshost.exe
     文件         490  2018-04-12 07:35  会议\bin\Debug\会议.vshost.exe.manifest
     文件        8456  2018-10-14 10:27  会议\Form1.cs
     文件        5753  2018-10-13 20:50  会议\Form1.Designer.cs
     文件        5817  2018-10-13 20:47  会议\Form1.resx
     目录           0  2018-10-09 09:56  会议\obj\
     目录           0  2018-10-09 09:56  会议\obj\x86\
     目录           0  2018-10-09 11:23  会议\obj\x86\Debug\
     文件        6158  2018-10-14 08:59  会议\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6368  2018-10-13 21:04  会议\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2018-10-09 09:56  会议\obj\x86\Debug\TempPE\
     文件        1188  2018-10-14 09:44  会议\obj\x86\Debug\会议.csproj.FileListAbsolute.txt
     文件         975  2018-10-13 20:47  会议\obj\x86\Debug\会议.csproj.GenerateResource.Cache
     文件       11776  2018-10-13 21:04  会议\obj\x86\Debug\会议.exe
     文件       26112  2018-10-13 21:04  会议\obj\x86\Debug\会议.pdb
     文件         180  2018-10-09 10:41  会议\obj\x86\Debug\会议.Properties.Resources.resources
     文件         180  2018-10-13 20:47  会议\obj\x86\Debug\会议.多播会议讨论程序.resources
     文件         506  2018-10-09 09:57  会议\Program.cs
     目录           0  2018-10-09 09:56  会议\Properties\
     文件        1344  2018-10-09 09:56  会议\Properties\AssemblyInfo.cs
     文件        2864  2018-10-09 09:56  会议\Properties\Resources.Designer.cs
     文件        5612  2018-10-09 09:56  会议\Properties\Resources.resx
     文件        1093  2018-10-09 09:56  会议\Properties\Settings.Designer.cs
     文件         249  2018-10-09 09:56  会议\Properties\Settings.settings
............此处省略2个文件信息

评论

共有 条评论