基本信息
源码名称:C# WCF 聊天
源码大小:0.29M
文件格式:.rar
开发语言:C#
更新时间:2023-06-16
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C# WCF 聊天
国外牛人做的WCF聊天程序,高效实时,学习C#的同学你值得拥有.做WCF的可以学习.
文件清单
└── WCFChat
├── Backup
│ ├── WCFChatClient
│ │ ├── App.config
│ │ ├── ChatForm.cs
│ │ ├── ChatForm.Designer.cs
│ │ ├── ChatForm.resx
│ │ ├── ChatProxy.cs
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Skins
│ │ │ ├── BuddyMenu.ico
│ │ │ ├── favicon.ico
│ │ │ ├── icon_hostusers_16px.gif
│ │ │ ├── icon_hostusers_32px.gif
│ │ │ ├── icon_lists_16px.gif
│ │ │ ├── icon_moduledefinitions_16px.gif
│ │ │ ├── icon_search_16px.gif
│ │ │ ├── icon_securityroles_16px.gif
│ │ │ ├── icon_skins_16px.gif
│ │ │ ├── icon_solutions_16px.gif
│ │ │ ├── icon_users_16px.gif
│ │ │ ├── icon_users_32px.gif
│ │ │ ├── icon_viewstats_16px.gif
│ │ │ ├── icon_viewstats_32px.gif
│ │ │ ├── icon_wizard_16px.gif
│ │ │ ├── icon_wizard_32px.gif
│ │ │ ├── MessageReading.gif
│ │ │ ├── Search.ico
│ │ │ └── UpdateInfoFormBG.jpg
│ │ ├── WaitForm.cs
│ │ ├── WaitForm.Designer.cs
│ │ ├── WaitForm.resx
│ │ └── WCFChatClient.csproj
│ ├── WCFChatService
│ │ ├── App.config
│ │ ├── ChatService.cs
│ │ ├── IChatService.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── WCFChatService.csproj
│ ├── WCFChat.sln
│ └── WCFChat.v11.suo
├── UpgradeLog.htm
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Error.png
│ ├── UpgradeReport_Information.png
│ ├── UpgradeReport_Success.png
│ ├── UpgradeReport_Warning.png
│ └── UpgradeReport.xslt
├── WCFChatClient
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── WCFChatClient.exe
│ │ │ ├── WCFChatClient.exe.config
│ │ │ ├── WCFChatClient.pdb
│ │ │ ├── WCFChatClient.vshost.exe
│ │ │ ├── WCFChatClient.vshost.exe.config
│ │ │ └── WCFChatClient.vshost.exe.manifest
│ │ └── Debug.rar
│ ├── ChatForm.cs
│ ├── ChatForm.Designer.cs
│ ├── ChatForm.resx
│ ├── ChatProxy.cs
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Refactor
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WCFChatClient.ChatForm.resources
│ │ ├── WCFChatClient.csproj.FileListAbsolute.txt
│ │ ├── WCFChatClient.csproj.GenerateResource.Cache
│ │ ├── WCFChatClient.csprojResolveAssemblyReference.cache
│ │ ├── WCFChatClient.exe
│ │ ├── WCFChatClient.LoginForm.resources
│ │ ├── WCFChatClient.pdb
│ │ ├── WCFChatClient.Properties.Resources.resources
│ │ └── WCFChatClient.WaitForm.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Skins
│ │ ├── BuddyMenu.ico
│ │ ├── favicon.ico
│ │ ├── icon_hostusers_16px.gif
│ │ ├── icon_hostusers_32px.gif
│ │ ├── icon_lists_16px.gif
│ │ ├── icon_moduledefinitions_16px.gif
│ │ ├── icon_search_16px.gif
│ │ ├── icon_securityroles_16px.gif
│ │ ├── icon_skins_16px.gif
│ │ ├── icon_solutions_16px.gif
│ │ ├── icon_users_16px.gif
│ │ ├── icon_users_32px.gif
│ │ ├── icon_viewstats_16px.gif
│ │ ├── icon_viewstats_32px.gif
│ │ ├── icon_wizard_16px.gif
│ │ ├── icon_wizard_32px.gif
│ │ ├── MessageReading.gif
│ │ ├── Search.ico
│ │ └── UpdateInfoFormBG.jpg
│ ├── WaitForm.cs
│ ├── WaitForm.Designer.cs
│ ├── WaitForm.resx
│ └── WCFChatClient.csproj
├── WCFChatService
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── WCFChatService.exe
│ │ ├── WCFChatService.exe.config
│ │ ├── WCFChatService.pdb
│ │ ├── WCFChatService.vshost.exe
│ │ ├── WCFChatService.vshost.exe.config
│ │ ├── WCFChatService.vshost.exe.manifest
│ │ └── WCFChat.vshost.exe.config
│ ├── ChatService.cs
│ ├── IChatService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Refactor
│ │ ├── TempPE
│ │ ├── WCFChatService.csproj.FileListAbsolute.txt
│ │ ├── WCFChatService.csprojResolveAssemblyReference.cache
│ │ ├── WCFChatService.exe
│ │ └── WCFChatService.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Skins
│ │ ├── BuddyMenu.ico
│ │ ├── favicon.ico
│ │ ├── icon_hostusers_16px.gif
│ │ ├── icon_hostusers_32px.gif
│ │ ├── icon_lists_16px.gif
│ │ ├── icon_moduledefinitions_16px.gif
│ │ ├── icon_search_16px.gif
│ │ ├── icon_securityroles_16px.gif
│ │ ├── icon_skins_16px.gif
│ │ ├── icon_solutions_16px.gif
│ │ ├── icon_users_16px.gif
│ │ ├── icon_users_32px.gif
│ │ ├── icon_viewstats_16px.gif
│ │ ├── icon_viewstats_32px.gif
│ │ ├── icon_wizard_16px.gif
│ │ ├── icon_wizard_32px.gif
│ │ ├── MessageReading.gif
│ │ ├── Search.ico
│ │ └── UpdateInfoFormBG.jpg
│ └── WCFChatService.csproj
├── WCFChat.sln
├── WCFChat.suo
└── WCFChat.v11.suo
26 directories, 149 files
C# WCF 聊天
国外牛人做的WCF聊天程序,高效实时,学习C#的同学你值得拥有.做WCF的可以学习.
文件清单
└── WCFChat
├── Backup
│ ├── WCFChatClient
│ │ ├── App.config
│ │ ├── ChatForm.cs
│ │ ├── ChatForm.Designer.cs
│ │ ├── ChatForm.resx
│ │ ├── ChatProxy.cs
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Skins
│ │ │ ├── BuddyMenu.ico
│ │ │ ├── favicon.ico
│ │ │ ├── icon_hostusers_16px.gif
│ │ │ ├── icon_hostusers_32px.gif
│ │ │ ├── icon_lists_16px.gif
│ │ │ ├── icon_moduledefinitions_16px.gif
│ │ │ ├── icon_search_16px.gif
│ │ │ ├── icon_securityroles_16px.gif
│ │ │ ├── icon_skins_16px.gif
│ │ │ ├── icon_solutions_16px.gif
│ │ │ ├── icon_users_16px.gif
│ │ │ ├── icon_users_32px.gif
│ │ │ ├── icon_viewstats_16px.gif
│ │ │ ├── icon_viewstats_32px.gif
│ │ │ ├── icon_wizard_16px.gif
│ │ │ ├── icon_wizard_32px.gif
│ │ │ ├── MessageReading.gif
│ │ │ ├── Search.ico
│ │ │ └── UpdateInfoFormBG.jpg
│ │ ├── WaitForm.cs
│ │ ├── WaitForm.Designer.cs
│ │ ├── WaitForm.resx
│ │ └── WCFChatClient.csproj
│ ├── WCFChatService
│ │ ├── App.config
│ │ ├── ChatService.cs
│ │ ├── IChatService.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── WCFChatService.csproj
│ ├── WCFChat.sln
│ └── WCFChat.v11.suo
├── UpgradeLog.htm
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Error.png
│ ├── UpgradeReport_Information.png
│ ├── UpgradeReport_Success.png
│ ├── UpgradeReport_Warning.png
│ └── UpgradeReport.xslt
├── WCFChatClient
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── WCFChatClient.exe
│ │ │ ├── WCFChatClient.exe.config
│ │ │ ├── WCFChatClient.pdb
│ │ │ ├── WCFChatClient.vshost.exe
│ │ │ ├── WCFChatClient.vshost.exe.config
│ │ │ └── WCFChatClient.vshost.exe.manifest
│ │ └── Debug.rar
│ ├── ChatForm.cs
│ ├── ChatForm.Designer.cs
│ ├── ChatForm.resx
│ ├── ChatProxy.cs
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Refactor
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WCFChatClient.ChatForm.resources
│ │ ├── WCFChatClient.csproj.FileListAbsolute.txt
│ │ ├── WCFChatClient.csproj.GenerateResource.Cache
│ │ ├── WCFChatClient.csprojResolveAssemblyReference.cache
│ │ ├── WCFChatClient.exe
│ │ ├── WCFChatClient.LoginForm.resources
│ │ ├── WCFChatClient.pdb
│ │ ├── WCFChatClient.Properties.Resources.resources
│ │ └── WCFChatClient.WaitForm.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Skins
│ │ ├── BuddyMenu.ico
│ │ ├── favicon.ico
│ │ ├── icon_hostusers_16px.gif
│ │ ├── icon_hostusers_32px.gif
│ │ ├── icon_lists_16px.gif
│ │ ├── icon_moduledefinitions_16px.gif
│ │ ├── icon_search_16px.gif
│ │ ├── icon_securityroles_16px.gif
│ │ ├── icon_skins_16px.gif
│ │ ├── icon_solutions_16px.gif
│ │ ├── icon_users_16px.gif
│ │ ├── icon_users_32px.gif
│ │ ├── icon_viewstats_16px.gif
│ │ ├── icon_viewstats_32px.gif
│ │ ├── icon_wizard_16px.gif
│ │ ├── icon_wizard_32px.gif
│ │ ├── MessageReading.gif
│ │ ├── Search.ico
│ │ └── UpdateInfoFormBG.jpg
│ ├── WaitForm.cs
│ ├── WaitForm.Designer.cs
│ ├── WaitForm.resx
│ └── WCFChatClient.csproj
├── WCFChatService
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── WCFChatService.exe
│ │ ├── WCFChatService.exe.config
│ │ ├── WCFChatService.pdb
│ │ ├── WCFChatService.vshost.exe
│ │ ├── WCFChatService.vshost.exe.config
│ │ ├── WCFChatService.vshost.exe.manifest
│ │ └── WCFChat.vshost.exe.config
│ ├── ChatService.cs
│ ├── IChatService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Refactor
│ │ ├── TempPE
│ │ ├── WCFChatService.csproj.FileListAbsolute.txt
│ │ ├── WCFChatService.csprojResolveAssemblyReference.cache
│ │ ├── WCFChatService.exe
│ │ └── WCFChatService.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Skins
│ │ ├── BuddyMenu.ico
│ │ ├── favicon.ico
│ │ ├── icon_hostusers_16px.gif
│ │ ├── icon_hostusers_32px.gif
│ │ ├── icon_lists_16px.gif
│ │ ├── icon_moduledefinitions_16px.gif
│ │ ├── icon_search_16px.gif
│ │ ├── icon_securityroles_16px.gif
│ │ ├── icon_skins_16px.gif
│ │ ├── icon_solutions_16px.gif
│ │ ├── icon_users_16px.gif
│ │ ├── icon_users_32px.gif
│ │ ├── icon_viewstats_16px.gif
│ │ ├── icon_viewstats_32px.gif
│ │ ├── icon_wizard_16px.gif
│ │ ├── icon_wizard_32px.gif
│ │ ├── MessageReading.gif
│ │ ├── Search.ico
│ │ └── UpdateInfoFormBG.jpg
│ └── WCFChatService.csproj
├── WCFChat.sln
├── WCFChat.suo
└── WCFChat.v11.suo
26 directories, 149 files