protected override void OnApply(PageApplyEventArgs e)
 {
     base.OnApply(e);
     if (OptionsChanged != null)
     {
         var optionsEventArg = new OptionsChangedEventArgs
         {
             AppVeyorOptions = this
         };
         OptionsChanged(this, optionsEventArg);
     }
 }
 protected override void OnApply(PageApplyEventArgs e)
 {
     base.OnApply(e);
     if (OptionsChanged != null)
     {
         var optionsEventArg = new OptionsChangedEventArgs
         {
             AppVeyorOptions = this
         };
         OptionsChanged(this, optionsEventArg);
     }
 }