文件名称:protobuf-net.Grpc:用于protobuf-net和grpc-dotnet的GRPC绑定
文件大小:1.53MB
文件格式:ZIP
更新时间:2024-05-18 12:04:26
C#
Protobuf-net protobuf-net.Grpc使用本机Grpc.Core API或完全托管的Grpc.Net.Client / Grpc.AspNetCore.Server API通过protobuf-net.Grpc添加了代码优先的服务支持。 它应该适用于所有可以远程生成某些内容的.NET语言,例如常规.NET类型模型。 用法就像为您的服务合同声明一个接口一样简单: [ ServiceContract ] public interface IMyAmazingService { ValueTask < SearchResponse> SearchAsync ( SearchRequest request ); // ... } 然后为服务器实现该接口: public class MyServer : IMyAmazingService {