/**
  * <summary>
  *   Returns the timer of the pulses counter (ms).
  * <para>
  * </para>
  * <para>
  * </para>
  * </summary>
  * <returns>
  *   an integer corresponding to the timer of the pulses counter (ms)
  * </returns>
  * <para>
  *   On failure, throws an exception or returns <c>YAnButton.PULSETIMER_INVALID</c>.
  * </para>
  */
 public long get_pulseTimer()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No AnButton connected");
     }
     return(_func.get_pulseTimer());
 }