找传奇、传世资源到传世资源站!

RPC服务的应用(包含服务器端和客户端)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

RPC(Remote Procedure Call)远程过程调用,本例中包含客户端和服务器端,可以很好的完整进行RPC服务的调试,并很方便进行代码复用,具有很好的示例效果。
from clipboard
.
└── 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

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复