AppVeyor.UI.Options.AppVeyorOptions.OnApply C# (CSharp) Method

OnApply() protected method

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