/// <summary>
 ///     Get ОРС
 /// </summary>
 /// <returns>True - OPC Complete, False - OPC Not complete</returns>
 public bool Opc()
 {
     try
     {
         return(_deviceExchanger.SendRequestDataInt("*OPC?;") == 1);
     }
     catch (N5746AException n5746AException)
     {
         throw new N5746AException(": " + n5746AException.Message);
     }
 }
 /// <summary>
 ///     Get ОРС
 /// </summary>
 /// <returns>True - OPC Complete, False - OPC Not complete</returns>
 public bool Opc()
 {
     try
     {
         return(_deviceExchanger.SendRequestDataInt("*OPC?;") == 1);
     }
     catch (Smb100AException smb100AException)
     {
         throw new Smb100AException(": " + smb100AException.Message);
     }
 }