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