Arbel.ReSharper.ConfigureAwaitPlugin.QuickFix.ConsiderUsingConfigureAwaitQuickFix.CreateBulbItems C# (CSharp) Method

CreateBulbItems() public method

public CreateBulbItems ( ) : IEnumerable
return IEnumerable
        public IEnumerable<IntentionAction> CreateBulbItems()
        {
            return new[]
            {
                new ConsiderUsingConfigureAwaitBulbItem(_highlighting.Expression, false),
                new ConsiderUsingConfigureAwaitBulbItem(_highlighting.Expression, true),
            }.ToQuickFixIntentions();
        }