コード例 #1
0
ファイル: Slot.cs プロジェクト: atadjiki/Host-Application
 public void PollConnection()
 {
     //if the client connected has dropped,
     //alert the mixer to remove the client
     if (!_sendingSocket.Client.Connected)
     {
         listener.OnDisconnect(this);
     }
 }