Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Last active March 29, 2018 05:16
Show Gist options
  • Select an option

  • Save wellingtonjhn/9f901e1a931e9e99050688673f75ee09 to your computer and use it in GitHub Desktop.

Select an option

Save wellingtonjhn/9f901e1a931e9e99050688673f75ee09 to your computer and use it in GitHub Desktop.
MediatR Request with Response
public class Ping : IRequest<string>
{
}
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