基本信息
源码名称:c# Remoting 实现进程间互相调用 并传递消息
源码大小:0.25M
文件格式:.zip
开发语言:C#
更新时间:2023-11-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

本次赞助数额为: 2 元 
   源码介绍
c# Remoting 实现进程间互相调用 并传递消息

.
├── ServiceManager
│   ├── Backup
│   │   ├── ClientApp
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Client.cs
│   │   │   ├── ClientApp.csproj
│   │   │   ├── ClientApp.csproj.user
│   │   │   └── MyServiceClient.cs
│   │   ├── ServerApp
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── MyService.cs
│   │   │   ├── ServerApp.cs
│   │   │   ├── ServerApp.csproj
│   │   │   ├── ServerApp.csproj.user
│   │   │   └── TestService.cs
│   │   ├── ServiceFramework
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── IListenService.cs
│   │   │   ├── IMessage.cs
│   │   │   ├── IMessageFactory.cs
│   │   │   ├── IMessageItem.cs
│   │   │   ├── IMessageItemSequence.cs
│   │   │   ├── IService.cs
│   │   │   ├── Message.cs
│   │   │   ├── MessageFactory.cs
│   │   │   ├── MessageItem.cs
│   │   │   ├── MessageItemSequence.cs
│   │   │   ├── RequestListener.cs
│   │   │   ├── Server.cs
│   │   │   ├── Service.cs
│   │   │   ├── ServiceFramework.csproj
│   │   │   └── ServiceFramework.csproj.user
│   │   ├── ServiceFramework.sln
│   │   └── ServiceFramework.suo
│   ├── Bin
│   │   ├── ClientApp.exe
│   │   ├── ClientApp.pdb
│   │   ├── ClientApp1.exe
│   │   ├── ClientApp1.pdb
│   │   ├── ClientApp1.vshost.exe
│   │   ├── MainApp.exe
│   │   ├── MainApp.pdb
│   │   ├── ServiceFramework.dll
│   │   └── ServiceFramework.pdb
│   ├── ClientApp
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Client.cs
│   │   ├── ClientApp.csproj
│   │   ├── ClientApp.csproj.user
│   │   ├── MyServiceClient.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── ClientApp.exe
│   │   │       ├── ClientApp.pdb
│   │   │       ├── ClientApp.vshost.exe
│   │   │       ├── ServiceFramework.dll
│   │   │       └── ServiceFramework.pdb
│   │   └── obj
│   │       ├── ClientApp.csproj.FileList.txt
│   │       └── Debug
│   │           ├── ClientApp.exe
│   │           ├── ClientApp.pdb
│   │           ├── ClientApp.projdata
│   │           ├── Refactor
│   │           ├── ResolveAssemblyReference.cache
│   │           ├── TempPE
│   │           └── temp
│   ├── ClientApp1
│   │   ├── Client.cs
│   │   ├── ClientApp1.csproj
│   │   ├── MyServiceClient.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── ClientApp1.exe
│   │   │       ├── ClientApp1.pdb
│   │   │       ├── ServiceFramework.dll
│   │   │       └── ServiceFramework.pdb
│   │   └── obj
│   │       ├── ClientApp1.csproj.FileList.txt
│   │       └── Debug
│   │           ├── ClientApp1.exe
│   │           ├── ClientApp1.pdb
│   │           ├── Refactor
│   │           ├── ResolveAssemblyReference.cache
│   │           └── TempPE
│   ├── ClientApp2
│   │   ├── App.config
│   │   ├── Client.cs
│   │   ├── ClientApp2.csproj
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── App.config
│   │   │       ├── ClientApp2.exe
│   │   │       ├── ClientApp2.exe.config
│   │   │       ├── ClientApp2.pdb
│   │   │       ├── ClientApp2.vshost.exe
│   │   │       └── ClientApp2.vshost.exe.config
│   │   └── obj
│   │       ├── ClientApp2.csproj.FileList.txt
│   │       └── Debug
│   │           ├── ClientApp2.exe
│   │           ├── ClientApp2.pdb
│   │           ├── Refactor
│   │           └── TempPE
│   ├── MainApp
│   │   ├── MainApp.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ReadErrorThread.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── MainApp.exe
│   │   │       ├── MainApp.pdb
│   │   │       └── MainApp.vshost.exe
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── MainApp.exe
│   │       │   ├── MainApp.pdb
│   │       │   ├── Refactor
│   │       │   └── TempPE
│   │       └── MainApp.csproj.FileList.txt
│   ├── ServerApp
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── ServerApp.cs
│   │   ├── ServerApp.csproj
│   │   ├── ServerApp.csproj.user
│   │   ├── TestService.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── ServerApp.exe
│   │   │       ├── ServerApp.pdb
│   │   │       ├── ServerApp.vshost.exe
│   │   │       ├── ServiceFramework.dll
│   │   │       └── ServiceFramework.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── Refactor
│   │       │   ├── ResolveAssemblyReference.cache
│   │       │   ├── ServerApp.exe
│   │       │   ├── ServerApp.pdb
│   │       │   ├── ServerApp.projdata
│   │       │   ├── TempPE
│   │       │   └── temp
│   │       └── ServerApp.csproj.FileList.txt
│   ├── ServerApp1
│   │   ├── MyService.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ServerApp.cs
│   │   ├── ServerApp1.csproj
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── App.config
│   │   │       ├── ServerApp1.exe
│   │   │       ├── ServerApp1.pdb
│   │   │       ├── ServerApp1.vshost.exe
│   │   │       ├── ServiceFramework.dll
│   │   │       └── ServiceFramework.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── Refactor
│   │       │   ├── ResolveAssemblyReference.cache
│   │       │   ├── ServerApp1.exe
│   │       │   ├── ServerApp1.pdb
│   │       │   └── TempPE
│   │       └── ServerApp1.csproj.FileList.txt
│   ├── ServiceFramework
│   │   ├── AssemblyInfo.cs
│   │   ├── IListenService.cs
│   │   ├── IMessage.cs
│   │   ├── IMessageFactory.cs
│   │   ├── IMessageItem.cs
│   │   ├── IMessageItemSequence.cs
│   │   ├── IService.cs
│   │   ├── Message.cs
│   │   ├── MessageFactory.cs
│   │   ├── MessageItem.cs
│   │   ├── MessageItemSequence.cs
│   │   ├── RequestListener.cs
│   │   ├── Server.cs
│   │   ├── Service.cs
│   │   ├── ServiceFramework.csproj
│   │   ├── ServiceFramework.csproj.user
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── ServiceFramework.dll
│   │   │       └── ServiceFramework.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── Refactor
│   │       │   │   └── ServiceFramework.dll
│   │       │   ├── ServiceFramework.dll
│   │       │   ├── ServiceFramework.pdb
│   │       │   ├── ServiceFramework.projdata
│   │       │   ├── TempPE
│   │       │   └── temp
│   │       └── ServiceFramework.csproj.FileList.txt
│   ├── ServiceFramework.sln
│   ├── ServiceFramework.suo
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│       ├── UpgradeReport.css
│       ├── UpgradeReport.xslt
│       ├── UpgradeReport_Minus.gif
│       └── UpgradeReport_Plus.gif
└── c# Remoting 实现进程间互相调用 并传递消息_ServiceManager.zip

62 directories, 151 files