예제 #1
0
파일: Server.cs 프로젝트: gustavAR/Spang
 internal void RemoveConnection(IServerConnection connection)
 {
     connection.StopAsyncRecive();
     connection.Close();
     this.connections.Remove(connection.ID);
 }