protected void OnDriverStarting(object sender, DriverStartingEventArgs e)
 {
     if (this.DriverStarting != null)
     {
         this.DriverStarting(sender, e);
     }
 }
Exemple #2
0
 protected void OnDriverLaunching(DriverService service, DriverOptions options)
 {
     if (this.DriverStarting != null)
     {
         DriverStartingEventArgs args = new DriverStartingEventArgs(service, options);
         this.DriverStarting(this, args);
     }
 }