示例#1
0
 /**
  * <summary>
  *   Returns the number of milliseconds remaining before the relays 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 relays is returned to idle position
  *   (state A), during a measured pulse generation
  * </returns>
  * <para>
  *   On failure, throws an exception or returns <c>YRelay.PULSETIMER_INVALID</c>.
  * </para>
  */
 public long get_pulseTimer()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Relay connected");
     }
     return(_func.get_pulseTimer());
 }