Ejemplo n.º 1
0
 /// <summary>
 /// Sciter is about to download a referred resource.
 /// </summary>
 protected virtual void OnProcessLoadData(LoadDataEventArgs e)
 {
     if (HasEvents)
     {
         var handler = (EventHandler <LoadDataEventArgs>)Events[LoadDataEvent];
         if (handler != null)
         {
             handler(this, e);
         }
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sciter is about to download a referred resource. 
 /// </summary>
 protected virtual void OnProcessLoadData(LoadDataEventArgs e)
 {
     if (HasEvents)
     {
         var handler = (EventHandler<LoadDataEventArgs>)Events[LoadDataEvent];
         if (handler != null)
         {
             handler(this, e);
         }
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Occurs when the sciter is about to download a referred resource. 
 /// </summary>
 void ISciterNotifications.ProcessLoadData(LoadDataEventArgs e)
 {
     OnProcessLoadData(e);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Occurs when the sciter is about to download a referred resource.
 /// </summary>
 void ISciterNotifications.ProcessLoadData(LoadDataEventArgs e)
 {
     OnProcessLoadData(e);
 }