25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

15 satır
284 B

  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. }