鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10、MedatR的两种用途.md 245B

3 vuotta sitten
12345678910111213141516171819
  1. 如果是请求响应模式
  2. ```
  3. IRequest
  4. IRequestHandler
  5. _mediator.Send(IRequest);
  6. ```
  7. 如果是事件广播模式
  8. ```
  9. INotification
  10. INotificationHandler
  11. _mediator.Publish(INotification);
  12. ```
  13. 而`IMediator`可以被注入到任何类中。