Exemplo n.º 1
0
 /**
  * <summary>
  *   Stops immediately any ongoing sequence replay.
  * <para>
  *   The display is left as is.
  * </para>
  * </summary>
  * <returns>
  *   <c>0</c> if the call succeeds.
  * </returns>
  * <para>
  *   On failure, throws an exception or returns a negative error code.
  * </para>
  */
 public virtual int stopSequence()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Display connected");
     }
     return(_func.stopSequence());
 }