@@ -18,7 +18,7 @@ namespace Microsoft.Extensions.DependencyInjection
1818 /// <summary>
1919 /// DI extensions for Mediator.
2020 /// </summary>
21- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
21+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
2222 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
2323 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
2424 public static class MediatorDependencyInjectionExtensions
@@ -83,23 +83,23 @@ public static IServiceCollection AddMediator(this IServiceCollection services, g
8383
8484namespace Mediator . Internals
8585{
86- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
86+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
8787 internal interface IMessageHandlerBase
8888 {
8989 global ::System . Threading . Tasks . ValueTask < object ? > Handle (
9090 object request ,
9191 global ::System . Threading . CancellationToken cancellationToken
9292 ) ;
9393 }
94- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
94+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
9595 internal interface INotificationHandlerBase
9696 {
9797 global ::System . Threading . Tasks . ValueTask Handle (
9898 object notification ,
9999 global ::System . Threading . CancellationToken cancellationToken
100100 ) ;
101101 }
102- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
102+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
103103 internal interface IStreamMessageHandlerBase
104104 {
105105 global ::System . Collections . Generic . IAsyncEnumerable < object ? > Handle (
@@ -108,15 +108,15 @@ internal interface IStreamMessageHandlerBase
108108 ) ;
109109 }
110110
111- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
111+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
112112 internal interface IRequestHandlerBase < TResponse > : IMessageHandlerBase
113113 {
114114 global ::System . Threading . Tasks . ValueTask < TResponse > Handle (
115115 global ::Mediator . IRequest < TResponse > request ,
116116 global ::System . Threading . CancellationToken cancellationToken
117117 ) ;
118118 }
119- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
119+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
120120 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
121121 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
122122 internal sealed class RequestHandlerWrapper < TRequest , TResponse > : IRequestHandlerBase < TResponse >
@@ -188,15 +188,15 @@ public RequestHandlerWrapper<TRequest, TResponse> Init(
188188 return await Handle ( ( TRequest ) request , cancellationToken ) ;
189189 }
190190 }
191- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
191+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
192192 internal interface IStreamRequestHandlerBase < TResponse > : IStreamMessageHandlerBase
193193 {
194194 global ::System . Collections . Generic . IAsyncEnumerable < TResponse > Handle (
195195 global ::Mediator . IStreamRequest < TResponse > request ,
196196 global ::System . Threading . CancellationToken cancellationToken
197197 ) ;
198198 }
199- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
199+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
200200 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
201201 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
202202 internal sealed class StreamRequestHandlerWrapper < TRequest , TResponse > : IStreamRequestHandlerBase < TResponse >
@@ -269,15 +269,15 @@ public StreamRequestHandlerWrapper<TRequest, TResponse> Init(
269269 yield return el ;
270270 }
271271 }
272- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
272+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
273273 internal interface ICommandHandlerBase < TResponse > : IMessageHandlerBase
274274 {
275275 global ::System . Threading . Tasks . ValueTask < TResponse > Handle (
276276 global ::Mediator . ICommand < TResponse > request ,
277277 global ::System . Threading . CancellationToken cancellationToken
278278 ) ;
279279 }
280- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
280+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
281281 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
282282 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
283283 internal sealed class CommandHandlerWrapper < TRequest , TResponse > : ICommandHandlerBase < TResponse >
@@ -349,15 +349,15 @@ public CommandHandlerWrapper<TRequest, TResponse> Init(
349349 return await Handle ( ( TRequest ) request , cancellationToken ) ;
350350 }
351351 }
352- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
352+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
353353 internal interface IStreamCommandHandlerBase < TResponse > : IStreamMessageHandlerBase
354354 {
355355 global ::System . Collections . Generic . IAsyncEnumerable < TResponse > Handle (
356356 global ::Mediator . IStreamCommand < TResponse > request ,
357357 global ::System . Threading . CancellationToken cancellationToken
358358 ) ;
359359 }
360- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
360+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
361361 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
362362 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
363363 internal sealed class StreamCommandHandlerWrapper < TRequest , TResponse > : IStreamCommandHandlerBase < TResponse >
@@ -430,15 +430,15 @@ public StreamCommandHandlerWrapper<TRequest, TResponse> Init(
430430 yield return el ;
431431 }
432432 }
433- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
433+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
434434 internal interface IQueryHandlerBase < TResponse > : IMessageHandlerBase
435435 {
436436 global ::System . Threading . Tasks . ValueTask < TResponse > Handle (
437437 global ::Mediator . IQuery < TResponse > request ,
438438 global ::System . Threading . CancellationToken cancellationToken
439439 ) ;
440440 }
441- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
441+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
442442 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
443443 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
444444 internal sealed class QueryHandlerWrapper < TRequest , TResponse > : IQueryHandlerBase < TResponse >
@@ -510,15 +510,15 @@ public QueryHandlerWrapper<TRequest, TResponse> Init(
510510 return await Handle ( ( TRequest ) request , cancellationToken ) ;
511511 }
512512 }
513- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
513+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
514514 internal interface IStreamQueryHandlerBase < TResponse > : IStreamMessageHandlerBase
515515 {
516516 global ::System . Collections . Generic . IAsyncEnumerable < TResponse > Handle (
517517 global ::Mediator . IStreamQuery < TResponse > request ,
518518 global ::System . Threading . CancellationToken cancellationToken
519519 ) ;
520520 }
521- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
521+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
522522 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
523523 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
524524 internal sealed class StreamQueryHandlerWrapper < TRequest , TResponse > : IStreamQueryHandlerBase < TResponse >
@@ -592,7 +592,7 @@ public StreamQueryHandlerWrapper<TRequest, TResponse> Init(
592592 }
593593 }
594594
595- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
595+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
596596 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
597597 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
598598 internal sealed class NotificationHandlerWrapper < TNotification > : INotificationHandlerBase
@@ -659,7 +659,7 @@ internal interface IContainerProbe { }
659659 internal sealed class ContainerProbe0 : IContainerProbe { }
660660 internal sealed class ContainerProbe1 : IContainerProbe { }
661661
662- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
662+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
663663 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
664664 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
665665 internal sealed class ContainerMetadata
@@ -719,7 +719,7 @@ namespace Mediator
719719 /// This type is also registered as a DI service.
720720 /// Can be used directly for high performance scenarios.
721721 /// </summary>
722- [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "3 .0.0.0" ) ]
722+ [ global ::System . CodeDom . Compiler . GeneratedCode ( "Mediator.SourceGenerator" , "4 .0.0.0" ) ]
723723 [ global ::System . Diagnostics . DebuggerNonUserCodeAttribute ]
724724 [ global ::System . Diagnostics . DebuggerStepThroughAttribute ]
725725 public sealed partial class Mediator : global ::Mediator . IMediator , global ::Mediator . ISender , global ::Mediator . IPublisher
0 commit comments