コード例 #1
0
 public FrmHub(IHubConsumer hubConsumer)
 {
     InitializeComponent();
     consumer = hubConsumer ?? throw new ArgumentNullException(nameof(hubConsumer));
 }
コード例 #2
0
 public FrmHub()
 {
     InitializeComponent();
     consumer = new HubConsumer(this);
 }