コード例 #1
0
        /// <summary>
        /// Raises the FlashCall event.
        /// </summary>
        /// <param name="request">A <see cref="String"/> with the flash request , xml formatted.</param>
        public virtual void FlashCall(string request)
        {
            AxFlashCallEvent flashcallEvent = new AxFlashCallEvent(request);

            this.parent.RaiseOnFlashCall(this.parent, flashcallEvent);
        }
コード例 #2
0
 /// <summary>
 /// Raises the FlashCall event.
 /// </summary>
 /// <param name="request">A <see cref="String"/> with the flash request , xml formatted.</param>
 public virtual void FlashCall(string request)
 {
   AxFlashCallEvent flashcallEvent = new AxFlashCallEvent(request);
   this.parent.RaiseOnFlashCall(this.parent, flashcallEvent);
 }
コード例 #3
0
ファイル: AxFlash.cs プロジェクト: DeSciL/Ogama
 /// <summary>
 /// Raises the FlashCall event.
 /// </summary>
 /// <param name="sender">The sender of the event.</param>
 /// <param name="e">An <see cref="AxFlashCallEvent"/> with the event data.</param>
 internal void RaiseOnFlashCall(object sender, AxFlashCallEvent e)
 {
   if (this.FlashCall != null)
   {
     this.FlashCall(sender, e);
   }
 }