Beispiel #1
0
 public void ChangeSessionScore(int sessionId, double score)
 {
     try
     {
         _testClient.ChangeSessionScore(sessionId, score);
     }
     catch (CommunicationException)
     {
         _testClient = _factory.CreateChannel();
         _testClient.ChangeSessionScore(sessionId, score);
     }
 }