基本信息
源码名称:RPC服务的应用(包含服务器端和客户端)
源码大小:0.05M
文件格式:.rar
开发语言:C#
更新时间:2021-11-23
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

本次赞助数额为: 2 元 
   源码介绍
RPC(Remote Procedure Call)远程过程调用,本例中包含客户端和服务器端,可以很好的完整进行RPC服务的调试,并很方便进行代码复用,具有很好的示例效果。

.
└── RPC
    ├── RPCClient
    │   └── RPCClient
    │       ├── App.config
    │       ├── IMyService.cs
    │       ├── MyServiceProxy.cs
    │       ├── Program.cs
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── RPCClient.csproj
    │       ├── RPCClient.sln
    │       ├── bin
    │       │   └── Debug
    │       │       ├── RPCClient.exe
    │       │       ├── RPCClient.exe.config
    │       │       └── RPCClient.pdb
    │       └── obj
    │           └── Debug
    │               ├── DesignTimeResolveAssemblyReferencesInput.cache
    │               ├── RPCClient.csproj.AssemblyReference.cache
    │               ├── RPCClient.csproj.CoreCompileInputs.cache
    │               ├── RPCClient.csproj.FileListAbsolute.txt
    │               ├── RPCClient.csprojAssemblyReference.cache
    │               ├── RPCClient.exe
    │               ├── RPCClient.pdb
    │               └── TempPE
    └── RPCServer
        └── ConsoleApp1
            ├── App.config
            ├── ConsoleApp1.csproj
            ├── ConsoleApp1.sln
            ├── MyTestServiceImpl.cs
            ├── Program.cs
            ├── Properties
            │   └── AssemblyInfo.cs
            ├── ServiceHelpercs.cs
            ├── bin
            │   └── Debug
            │       ├── ConsoleApp1.exe
            │       ├── ConsoleApp1.exe.config
            │       └── ConsoleApp1.pdb
            └── obj
                └── Debug
                    ├── ConsoleApp1.csproj.AssemblyReference.cache
                    ├── ConsoleApp1.csproj.CoreCompileInputs.cache
                    ├── ConsoleApp1.csproj.FileListAbsolute.txt
                    ├── ConsoleApp1.csprojAssemblyReference.cache
                    ├── ConsoleApp1.exe
                    ├── ConsoleApp1.pdb
                    ├── DesignTimeResolveAssemblyReferencesInput.cache
                    └── TempPE

17 directories, 34 files