基本信息
源码名称:基于Thrift的Golang与c#程序互相访问
源码大小:2.47M
文件格式:.rar
开发语言:C#
更新时间:2023-04-25
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
基于Thrift的Golang与c#程序互相访问
文件清单
└── Golang_InteractWith_CShape_BasedonThrift_FromFaceBook
├── CSharp
│ ├── csharp
│ │ ├── CsharpClient
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpClient.exe
│ │ │ │ ├── CsharpClient.pdb
│ │ │ │ ├── CsharpClient.vshost.exe
│ │ │ │ ├── CsharpClient.vshost.exe.manifest
│ │ │ │ ├── Thrift.dll
│ │ │ │ └── Thrift.pdb
│ │ │ ├── CsharpClient.cs
│ │ │ ├── CsharpClient.csproj
│ │ │ ├── CsharpClient.csproj.user
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpClient.csproj.FileListAbsolute.txt
│ │ │ │ ├── CsharpClient.exe
│ │ │ │ ├── CsharpClient.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CsharpServer
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpServer.exe
│ │ │ │ ├── CsharpServer.pdb
│ │ │ │ ├── CsharpServer.vshost.exe
│ │ │ │ ├── CsharpServer.vshost.exe.manifest
│ │ │ │ ├── Thrift.dll
│ │ │ │ └── Thrift.pdb
│ │ │ ├── CsharpServer.cs
│ │ │ ├── CsharpServer.csproj
│ │ │ ├── CsharpServer.csproj.user
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── CsharpServer.exe
│ │ │ │ ├── CsharpServer.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── tutorial.sln
│ │ ├── tutorial.suo
│ │ ├── UpgradeLog.XML
│ │ └── _UpgradeReport_Files
│ │ ├── UpgradeReport.css
│ │ ├── UpgradeReport_Minus.gif
│ │ ├── UpgradeReport_Plus.gif
│ │ └── UpgradeReport.xslt
│ └── gen-csharp
│ ├── Calculator.cs
│ ├── InvalidOperation.cs
│ ├── Operation.cs
│ ├── SharedService.cs
│ ├── SharedStruct.cs
│ ├── tutorial.Constants.cs
│ └── Work.cs
├── Go
│ ├── Makefile.am
│ ├── server.crt
│ ├── server.key
│ └── src
│ ├── client.go
│ ├── handler.go
│ ├── main.go
│ ├── server.go
│ ├── shared
│ │ ├── constants.go
│ │ ├── shared_service.go
│ │ ├── shared_service-remote
│ │ │ └── shared_service-remote.go
│ │ └── ttypes.go
│ ├── src.exe
│ ├── thrift
│ │ ├── application_exception.go
│ │ ├── application_exception_test.go
│ │ ├── binary_protocol.go
│ │ ├── binary_protocol_test.go
│ │ ├── buffered_transport.go
│ │ ├── buffered_transport_test.go
│ │ ├── compact_protocol.go
│ │ ├── compact_protocol_test.go
│ │ ├── exception.go
│ │ ├── field.go
│ │ ├── framed_transport.go
│ │ ├── framed_transport_test.go
│ │ ├── http_client.go
│ │ ├── http_client_test.go
│ │ ├── iostream_transport.go
│ │ ├── iostream_transport_test.go
│ │ ├── json_protocol.go
│ │ ├── json_protocol_test.go
│ │ ├── memory_buffer.go
│ │ ├── memory_buffer_test.go
│ │ ├── messagetype.go
│ │ ├── numeric.go
│ │ ├── processor_factory.go
│ │ ├── processor.go
│ │ ├── protocol_exception.go
│ │ ├── protocol_factory.go
│ │ ├── protocol.go
│ │ ├── protocol_test.go
│ │ ├── server.go
│ │ ├── server_socket.go
│ │ ├── server_test.go
│ │ ├── server_transport.go
│ │ ├── simple_json_protocol.go
│ │ ├── simple_json_protocol_test.go
│ │ ├── simple_server.go
│ │ ├── socket.go
│ │ ├── ssl_server_socket.go
│ │ ├── ssl_socket.go
│ │ ├── transport_exception.go
│ │ ├── transport_factory.go
│ │ ├── transport.go
│ │ ├── transport_test.go
│ │ └── type.go
│ └── tutorial
│ ├── calculator.go
│ ├── calculator-remote
│ │ └── calculator-remote.go
│ ├── constants.go
│ └── ttypes.go
├── shared.thrift
├── thrift-0.9.1.exe
└── tutorial.thrift
26 directories, 105 files
基于Thrift的Golang与c#程序互相访问
文件清单
└── Golang_InteractWith_CShape_BasedonThrift_FromFaceBook
├── CSharp
│ ├── csharp
│ │ ├── CsharpClient
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpClient.exe
│ │ │ │ ├── CsharpClient.pdb
│ │ │ │ ├── CsharpClient.vshost.exe
│ │ │ │ ├── CsharpClient.vshost.exe.manifest
│ │ │ │ ├── Thrift.dll
│ │ │ │ └── Thrift.pdb
│ │ │ ├── CsharpClient.cs
│ │ │ ├── CsharpClient.csproj
│ │ │ ├── CsharpClient.csproj.user
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpClient.csproj.FileListAbsolute.txt
│ │ │ │ ├── CsharpClient.exe
│ │ │ │ ├── CsharpClient.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CsharpServer
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpServer.exe
│ │ │ │ ├── CsharpServer.pdb
│ │ │ │ ├── CsharpServer.vshost.exe
│ │ │ │ ├── CsharpServer.vshost.exe.manifest
│ │ │ │ ├── Thrift.dll
│ │ │ │ └── Thrift.pdb
│ │ │ ├── CsharpServer.cs
│ │ │ ├── CsharpServer.csproj
│ │ │ ├── CsharpServer.csproj.user
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── CsharpServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── CsharpServer.exe
│ │ │ │ ├── CsharpServer.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── tutorial.sln
│ │ ├── tutorial.suo
│ │ ├── UpgradeLog.XML
│ │ └── _UpgradeReport_Files
│ │ ├── UpgradeReport.css
│ │ ├── UpgradeReport_Minus.gif
│ │ ├── UpgradeReport_Plus.gif
│ │ └── UpgradeReport.xslt
│ └── gen-csharp
│ ├── Calculator.cs
│ ├── InvalidOperation.cs
│ ├── Operation.cs
│ ├── SharedService.cs
│ ├── SharedStruct.cs
│ ├── tutorial.Constants.cs
│ └── Work.cs
├── Go
│ ├── Makefile.am
│ ├── server.crt
│ ├── server.key
│ └── src
│ ├── client.go
│ ├── handler.go
│ ├── main.go
│ ├── server.go
│ ├── shared
│ │ ├── constants.go
│ │ ├── shared_service.go
│ │ ├── shared_service-remote
│ │ │ └── shared_service-remote.go
│ │ └── ttypes.go
│ ├── src.exe
│ ├── thrift
│ │ ├── application_exception.go
│ │ ├── application_exception_test.go
│ │ ├── binary_protocol.go
│ │ ├── binary_protocol_test.go
│ │ ├── buffered_transport.go
│ │ ├── buffered_transport_test.go
│ │ ├── compact_protocol.go
│ │ ├── compact_protocol_test.go
│ │ ├── exception.go
│ │ ├── field.go
│ │ ├── framed_transport.go
│ │ ├── framed_transport_test.go
│ │ ├── http_client.go
│ │ ├── http_client_test.go
│ │ ├── iostream_transport.go
│ │ ├── iostream_transport_test.go
│ │ ├── json_protocol.go
│ │ ├── json_protocol_test.go
│ │ ├── memory_buffer.go
│ │ ├── memory_buffer_test.go
│ │ ├── messagetype.go
│ │ ├── numeric.go
│ │ ├── processor_factory.go
│ │ ├── processor.go
│ │ ├── protocol_exception.go
│ │ ├── protocol_factory.go
│ │ ├── protocol.go
│ │ ├── protocol_test.go
│ │ ├── server.go
│ │ ├── server_socket.go
│ │ ├── server_test.go
│ │ ├── server_transport.go
│ │ ├── simple_json_protocol.go
│ │ ├── simple_json_protocol_test.go
│ │ ├── simple_server.go
│ │ ├── socket.go
│ │ ├── ssl_server_socket.go
│ │ ├── ssl_socket.go
│ │ ├── transport_exception.go
│ │ ├── transport_factory.go
│ │ ├── transport.go
│ │ ├── transport_test.go
│ │ └── type.go
│ └── tutorial
│ ├── calculator.go
│ ├── calculator-remote
│ │ └── calculator-remote.go
│ ├── constants.go
│ └── ttypes.go
├── shared.thrift
├── thrift-0.9.1.exe
└── tutorial.thrift
26 directories, 105 files