2 instantiations of StreamingOutputCallRequest
InteropWebsite (2)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (2)
2309
private static readonly pb::MessageParser<StreamingOutputCallRequest> _parser = new pb::MessageParser<StreamingOutputCallRequest>(() => new
StreamingOutputCallRequest
());
2348
return new
StreamingOutputCallRequest
(this);
28 references to StreamingOutputCallRequest
InteropWebsite (28)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (11)
68
new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.
StreamingOutputCallRequest
), global::Grpc.Testing.
StreamingOutputCallRequest
.Parser, new[]{ "ResponseType", "ResponseParameters", "Payload", "ResponseStatus" }, null, null, null, null),
2304
public sealed partial class StreamingOutputCallRequest : pb::IMessage<
StreamingOutputCallRequest
>
2309
private static readonly pb::MessageParser<
StreamingOutputCallRequest
> _parser = new pb::MessageParser<
StreamingOutputCallRequest
>(() => new StreamingOutputCallRequest());
2313
public static pb::MessageParser<
StreamingOutputCallRequest
> Parser { get { return _parser; } }
2337
public StreamingOutputCallRequest(
StreamingOutputCallRequest
other) : this() {
2347
public
StreamingOutputCallRequest
Clone() {
2416
return Equals(other as
StreamingOutputCallRequest
);
2421
public bool Equals(
StreamingOutputCallRequest
other) {
2525
public void MergeFrom(
StreamingOutputCallRequest
other) {
artifacts\obj\InteropWebsite\Release\net10.0\TestGrpc.cs (14)
77
static readonly grpc::Marshaller<global::Grpc.Testing.
StreamingOutputCallRequest
> __Marshaller_grpc_testing_StreamingOutputCallRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Grpc.Testing.
StreamingOutputCallRequest
.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 (3)
43
public override async Task StreamingOutputCall(
StreamingOutputCallRequest
request, IServerStreamWriter<StreamingOutputCallResponse> responseStream, ServerCallContext context)
74
public override async Task FullDuplexCall(IAsyncStreamReader<
StreamingOutputCallRequest
> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream, ServerCallContext context)
89
public override Task HalfDuplexCall(IAsyncStreamReader<
StreamingOutputCallRequest
> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream, ServerCallContext context)