Beispiel #1
0
 public byte[] GetImage(string imageId)
 {
     try
     {
         return(_testClient.GetImage(imageId));
     }
     catch (CommunicationException)
     {
         _testClient = _factory.CreateChannel();
         return(_testClient.GetImage(imageId));
     }
 }