/**
  * <summary>
  *   Saves the preprogrammed playing sequence to flash memory.
  * <para>
  * </para>
  * </summary>
  * <returns>
  *   <c>0</c> if the call succeeds.
  *   On failure, throws an exception or returns a negative error code.
  * </returns>
  */
 public virtual int savePlaySeq()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Buzzer connected");
     }
     return(_func.savePlaySeq());
 }