SonarLint.VisualStudio.Progress.UnitTests.ConfigurableProgressEvents.InvokeCancellationSupportChanged C# (CSharp) Method

InvokeCancellationSupportChanged() public method

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