예제 #1
0
        /// <summary>
        /// Raises the FSCommand event.
        /// </summary>
        /// <param name="command">A <see cref="String"/> with the command to be sent.</param>
        /// <param name="args">A <see cref="String"/> with the comman arguments.</param>
        public virtual void FSCommand(string command, string args)
        {
            AxFlashFSCommandEvent fscommandEvent = new AxFlashFSCommandEvent(command, args);

            this.parent.RaiseOnFSCommand(this.parent, fscommandEvent);
        }
예제 #2
0
 /// <summary>
 /// Raises the FSCommand event.
 /// </summary>
 /// <param name="command">A <see cref="String"/> with the command to be sent.</param>
 /// <param name="args">A <see cref="String"/> with the comman arguments.</param>
 public virtual void FSCommand(string command, string args)
 {
   AxFlashFSCommandEvent fscommandEvent = new AxFlashFSCommandEvent(command, args);
   this.parent.RaiseOnFSCommand(this.parent, fscommandEvent);
 }
예제 #3
0
파일: AxFlash.cs 프로젝트: DeSciL/Ogama
 /// <summary>
 /// Raises the FSCommand event.
 /// </summary>
 /// <param name="sender">The sender of the event.</param>
 /// <param name="e">An <see cref="AxFlashFSCommandEvent"/> with the event data.</param>
 internal void RaiseOnFSCommand(object sender, AxFlashFSCommandEvent e)
 {
   if (this.FSCommand != null)
   {
     this.FSCommand(sender, e);
   }
 }