Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WindowsアプリにsignalRを実装する方法の例を誰かに見せてください。サーバー側の起動時にメッセージボックスを表示する必要が頻繁にある
接続の開始メソッドは非同期メソッドです。Task クラスの ConinueWith メソッドを呼び出す必要があります。
var connection = new HubConnection("http://localhost:port-no"); IHubProxy hub = connection.CreateProxy("hub-name"); connection.Start().ContinueWith((t) => { MessageBox.Show("Your-message"); });