選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

EventSubscriber.cs 284 B

1234567891011121314
  1. using System;
  2. using DotNetCore.CAP;
  3. namespace Sample.ConsoleApp
  4. {
  5. public class EventSubscriber : ICapSubscribe
  6. {
  7. [CapSubscribe("sample.console.showtime")]
  8. public void ShowTime(DateTime date)
  9. {
  10. Console.WriteLine(date);
  11. }
  12. }
  13. }