SonarLint.VisualStudio.Progress.UnitTests.ConfigurableProgressEvents.InvokeCancellationSupportChanged C# (CSharp) Méthode

InvokeCancellationSupportChanged() public méthode

public InvokeCancellationSupportChanged ( bool cancellable ) : void
cancellable bool
Résultat void
        public void InvokeCancellationSupportChanged(bool cancellable)
        {
            if (this.CancellationSupportChanged != null)
            {
                this.CancellationSupportChanged(this, new CancellationSupportChangedEventArgs(cancellable));
            }
        }
        #endregion