@@ -65,7 +65,7 @@ public void AddUnaryMethod<TRequest, TResponse>(Method<TRequest, TResponse> meth
65
65
/// <param name="method">The method description.</param>
66
66
/// <param name="metadata">The method metadata. This metadata can be used by routing and middleware when invoking a gRPC method.</param>
67
67
/// <param name="invoker">The method invoker that is executed when the method is called.</param>
68
- public void AddServerStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , List < object > metadata , ServerStreamingServerMethod < TService , TRequest , TResponse > invoker )
68
+ public void AddServerStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , IList < object > metadata , ServerStreamingServerMethod < TService , TRequest , TResponse > invoker )
69
69
where TRequest : class
70
70
where TResponse : class
71
71
{
@@ -83,7 +83,7 @@ public void AddServerStreamingMethod<TRequest, TResponse>(Method<TRequest, TResp
83
83
/// <param name="method">The method description.</param>
84
84
/// <param name="metadata">The method metadata. This metadata can be used by routing and middleware when invoking a gRPC method.</param>
85
85
/// <param name="invoker">The method invoker that is executed when the method is called.</param>
86
- public void AddClientStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , List < object > metadata , ClientStreamingServerMethod < TService , TRequest , TResponse > invoker )
86
+ public void AddClientStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , IList < object > metadata , ClientStreamingServerMethod < TService , TRequest , TResponse > invoker )
87
87
where TRequest : class
88
88
where TResponse : class
89
89
{
@@ -101,7 +101,7 @@ public void AddClientStreamingMethod<TRequest, TResponse>(Method<TRequest, TResp
101
101
/// <param name="method">The method description.</param>
102
102
/// <param name="metadata">The method metadata. This metadata can be used by routing and middleware when invoking a gRPC method.</param>
103
103
/// <param name="invoker">The method invoker that is executed when the method is called.</param>
104
- public void AddDuplexStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , List < object > metadata , DuplexStreamingServerMethod < TService , TRequest , TResponse > invoker )
104
+ public void AddDuplexStreamingMethod < TRequest , TResponse > ( Method < TRequest , TResponse > method , IList < object > metadata , DuplexStreamingServerMethod < TService , TRequest , TResponse > invoker )
105
105
where TRequest : class
106
106
where TResponse : class
107
107
{
0 commit comments