Provides data for InitiateDownloaded event
Inheritance: System.EventArgs
Ejemplo n.º 1
0
 /// <summary>Raises the InitiateDownload event</summary>
 /// <param name="e">A InitiateDownloadEventArgs object containing the
 /// data returned from the simulator</param>
 protected virtual void OnInitiateDownload(InitiateDownloadEventArgs e)
 {
     EventHandler<InitiateDownloadEventArgs> handler = m_InitiateDownloadEvent;
     if (handler != null)
         handler(this, e);
 }