4 types derived from ServerMethodInvokerBase
Microsoft.AspNetCore.Grpc.JsonTranscoding (4)
parent\Shared\Server\ClientStreamingServerMethodInvoker.cs (1)
33internal sealed class ClientStreamingServerMethodInvoker<[DynamicallyAccessedMembers(ServerDynamicAccessConstants.ServiceAccessibility)] TService, TRequest, TResponse> : ServerMethodInvokerBase<TService, TRequest, TResponse>
parent\Shared\Server\DuplexStreamingServerMethodInvoker.cs (1)
33internal sealed class DuplexStreamingServerMethodInvoker<[DynamicallyAccessedMembers(ServerDynamicAccessConstants.ServiceAccessibility)] TService, TRequest, TResponse> : ServerMethodInvokerBase<TService, TRequest, TResponse>
parent\Shared\Server\ServerStreamingServerMethodInvoker.cs (1)
33internal sealed class ServerStreamingServerMethodInvoker<[DynamicallyAccessedMembers(ServerDynamicAccessConstants.ServiceAccessibility)] TService, TRequest, TResponse> : ServerMethodInvokerBase<TService, TRequest, TResponse>
parent\Shared\Server\UnaryServerMethodInvoker.cs (1)
34internal sealed class UnaryServerMethodInvoker<[DynamicallyAccessedMembers(ServerDynamicAccessConstants.ServiceAccessibility)] TService, TRequest, TResponse> : ServerMethodInvokerBase<TService, TRequest, TResponse>
2 references to ServerMethodInvokerBase
Microsoft.AspNetCore.Grpc.JsonTranscoding (2)
Internal\CallHandlers\ServerCallHandlerBase.cs (2)
20protected ServerMethodInvokerBase<TService, TRequest, TResponse> MethodInvoker { get; } 26ServerMethodInvokerBase<TService, TRequest, TResponse> methodInvoker,