/**
  * <summary>
  *   Returns the number of milliseconds remaining before the watchdog is returned to idle position
  *   (state A), during a measured pulse generation.
  * <para>
  *   When there is no ongoing pulse, returns zero.
  * </para>
  * <para>
  * </para>
  * </summary>
  * <returns>
  *   an integer corresponding to the number of milliseconds remaining before the watchdog is returned to
  *   idle position
  *   (state A), during a measured pulse generation
  * </returns>
  * <para>
  *   On failure, throws an exception or returns <c>YWatchdog.PULSETIMER_INVALID</c>.
  * </para>
  */
 public long get_pulseTimer()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Watchdog connected");
     }
     return(_func.get_pulseTimer());
 }