Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

15 řádky
361 B

  1. using Microsoft.Extensions.DependencyInjection;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT1078.Gateway.Interfaces
  6. {
  7. public interface IJT1078UdpBuilder
  8. {
  9. IJT1078Builder Instance { get; }
  10. IJT1078Builder Builder();
  11. IJT1078UdpBuilder Replace<T>() where T : IJT1078UdpMessageHandlers;
  12. }
  13. }