Beispiel #1
0
 public byte[] GetQuestion(int questId, bool getBLOBs)
 {
     try
     {
         return(_testClient.GetQuestion(questId, getBLOBs));
     }
     catch (CommunicationException)
     {
         _testClient = _factory.CreateChannel();
         return(_testClient.GetQuestion(questId, getBLOBs));
     }
 }