File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ public DistributedTransport(TConfiguration configuration)
6262 /// <inheritdoc cref="ITransport{TConfiguration}.Configuration"/>
6363 public TConfiguration Configuration { get ; }
6464
65+ ITransportConfiguration ITransport . Configuration => Configuration ;
66+
6567 /// <inheritdoc cref="ITransport.Request{TResponse}"/>
6668 public TResponse Request < TResponse > (
6769 in EndpointPath path ,
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ public Task<TResponse> RequestAsync<TResponse>(
5454 CancellationToken cancellationToken = default
5555 )
5656 where TResponse : TransportResponse , new ( ) ;
57+
58+ /// <summary> The <see cref="ITransportConfiguration" /> in use by this transport instance </summary>
59+ public ITransportConfiguration Configuration { get ; }
5760}
5861
5962/// <summary>
@@ -63,10 +66,8 @@ public Task<TResponse> RequestAsync<TResponse>(
6366public interface ITransport < out TConfiguration > : ITransport
6467 where TConfiguration : class , ITransportConfiguration
6568{
66- /// <summary>
67- /// The <see cref="ITransportConfiguration" /> in use by this transport instance
68- /// </summary>
69- public TConfiguration Configuration { get ; }
69+ /// <summary> The <see cref="ITransportConfiguration" /> in use by this transport instance </summary>
70+ public new TConfiguration Configuration { get ; }
7071}
7172
7273/// <summary>
You can’t perform that action at this time.
0 commit comments