4 instantiations of StreamingOutputCallResponse
InteropWebsite (4)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (2)
2635
private static readonly pb::MessageParser<StreamingOutputCallResponse> _parser = new pb::MessageParser<StreamingOutputCallResponse>(() => new
StreamingOutputCallResponse
());
2671
return new
StreamingOutputCallResponse
(this);
TestServiceImpl.cs (2)
54
var response = new
StreamingOutputCallResponse
{ Payload = CreateZerosPayload(responseParam.Size) };
83
var response = new
StreamingOutputCallResponse
{ Payload = CreateZerosPayload(responseParam.Size) };
30 references to StreamingOutputCallResponse
InteropWebsite (30)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (11)
69
new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.
StreamingOutputCallResponse
), global::Grpc.Testing.
StreamingOutputCallResponse
.Parser, new[]{ "Payload" }, null, null, null, null),
2630
public sealed partial class StreamingOutputCallResponse : pb::IMessage<
StreamingOutputCallResponse
>
2635
private static readonly pb::MessageParser<
StreamingOutputCallResponse
> _parser = new pb::MessageParser<
StreamingOutputCallResponse
>(() => new StreamingOutputCallResponse());
2639
public static pb::MessageParser<
StreamingOutputCallResponse
> Parser { get { return _parser; } }
2663
public StreamingOutputCallResponse(
StreamingOutputCallResponse
other) : this() {
2670
public
StreamingOutputCallResponse
Clone() {
2692
return Equals(other as
StreamingOutputCallResponse
);
2697
public bool Equals(
StreamingOutputCallResponse
other) {
2770
public void MergeFrom(
StreamingOutputCallResponse
other) {
artifacts\obj\InteropWebsite\Release\net10.0\TestGrpc.cs (14)
79
static readonly grpc::Marshaller<global::Grpc.Testing.
StreamingOutputCallResponse
> __Marshaller_grpc_testing_StreamingOutputCallResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Grpc.Testing.
StreamingOutputCallResponse
.Parser));
110
static readonly grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
> __Method_StreamingOutputCall = new grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(
126
static readonly grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
> __Method_FullDuplexCall = new grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(
134
static readonly grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
> __Method_HalfDuplexCall = new grpc::Method<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(
206
public virtual global::System.Threading.Tasks.Task StreamingOutputCall(global::Grpc.Testing.StreamingOutputCallRequest request, grpc::IServerStreamWriter<global::Grpc.Testing.
StreamingOutputCallResponse
> responseStream, grpc::ServerCallContext context)
234
public virtual global::System.Threading.Tasks.Task FullDuplexCall(grpc::IAsyncStreamReader<global::Grpc.Testing.StreamingOutputCallRequest> requestStream, grpc::IServerStreamWriter<global::Grpc.Testing.
StreamingOutputCallResponse
> responseStream, grpc::ServerCallContext context)
250
public virtual global::System.Threading.Tasks.Task HalfDuplexCall(grpc::IAsyncStreamReader<global::Grpc.Testing.StreamingOutputCallRequest> requestStream, grpc::IServerStreamWriter<global::Grpc.Testing.
StreamingOutputCallResponse
> responseStream, grpc::ServerCallContext context)
296
serviceBinder.AddMethod(__Method_StreamingOutputCall, serviceImpl == null ? null : new grpc::ServerStreamingServerMethod<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(serviceImpl.StreamingOutputCall));
298
serviceBinder.AddMethod(__Method_FullDuplexCall, serviceImpl == null ? null : new grpc::DuplexStreamingServerMethod<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(serviceImpl.FullDuplexCall));
299
serviceBinder.AddMethod(__Method_HalfDuplexCall, serviceImpl == null ? null : new grpc::DuplexStreamingServerMethod<global::Grpc.Testing.StreamingOutputCallRequest, global::Grpc.Testing.
StreamingOutputCallResponse
>(serviceImpl.HalfDuplexCall));
TestServiceImpl.cs (5)
43
public override async Task StreamingOutputCall(StreamingOutputCallRequest request, IServerStreamWriter<
StreamingOutputCallResponse
> responseStream, ServerCallContext context)
54
var
response = new StreamingOutputCallResponse { Payload = CreateZerosPayload(responseParam.Size) };
74
public override async Task FullDuplexCall(IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<
StreamingOutputCallResponse
> responseStream, ServerCallContext context)
83
var
response = new StreamingOutputCallResponse { Payload = CreateZerosPayload(responseParam.Size) };
89
public override Task HalfDuplexCall(IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<
StreamingOutputCallResponse
> responseStream, ServerCallContext context)