Last active
March 29, 2018 05:16
-
-
Save wellingtonjhn/9f901e1a931e9e99050688673f75ee09 to your computer and use it in GitHub Desktop.
MediatR Request with Response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Ping : IRequest<string> | |
| { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PingHandler : IRequestHandler<Ping, string> | |
| { | |
| public Task<string> Handle(Ping request, CancellationToken cancellationToken) | |
| { | |
| return Task.FromResult("Pong"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment