/// <summary>
 ///     Device identification
 /// </summary>
 /// <returns>Device Identifier String</returns>
 public string Identification()
 {
     try
     {
         return(_deviceExchanger.SendRequestDataString("*IDN?;"));
     }
     catch (Smb100AException smb100AException)
     {
         throw new Smb100AException("Failed to identify signal generator source: " + smb100AException.Message);
     }
 }
 /// <summary>
 ///     Device identification
 /// </summary>
 /// <returns>Device Identifier String</returns>
 public string Identification()
 {
     try
     {
         var result = _deviceExchanger.SendRequestDataString("*IDN?;");
         return(result);
     }
     catch (N5746AException n5746AException)
     {
         throw new N5746AException("Failed to identify power source: " + n5746AException.Message);
     }
 }