Example #1
0
 /// <summary>
 /// Free the Master Slot.
 /// </summary>
 /// <returns>Success</returns>
 public bool FreeMaster()
 {
     try
     {
         channel.FreeMaster();
         return(true);
     }
     catch (FaultException <AntMeFault> fault)
     {
         throw new ArgumentException(fault.Detail.Description);
     }
     catch (Exception ex)
     {
         CloseByError(ex);
         throw;
     }
 }