9 references to CompletionSet
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\CompletionSourceProvider.cs (1)
34private readonly IAsynchronousOperationListener _listener = listenerProvider.GetListener(FeatureAttribute.CompletionSet);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
AbstractCommandHandlerTestState.cs (2)
234Assert.False(provider.HasPendingWaiter(FeatureAttribute.EventHookup, FeatureAttribute.CompletionSet, FeatureAttribute.SignatureHelp), "IAsyncTokens unexpectedly alive. Call WaitForAsynchronousOperationsAsync before this method"); 241await provider.WaitAllDispatcherOperationAndTasksAsync(Workspace, FeatureAttribute.EventHookup, FeatureAttribute.CompletionSet, FeatureAttribute.SignatureHelp);
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Completion\CompletionServiceTests.cs (1)
54var waiter = workspace.ExportProvider.GetExportedValue<AsynchronousOperationListenerProvider>().GetWaiter(FeatureAttribute.CompletionSet);
Microsoft.CodeAnalysis.Features (2)
Completion\CompletionService.ProviderManager.cs (1)
46listenerProvider.GetListener(FeatureAttribute.CompletionSet),
Completion\Providers\ImportCompletionProvider\AbstractImportCompletionCacheServiceFactory.cs (1)
33_listenerProvider.GetListener(FeatureAttribute.CompletionSet),
Microsoft.CodeAnalysis.Workspaces (1)
Shared\TestHooks\FeatureAttribute.cs (1)
20public const string CompletionSet = nameof(CompletionSet);
Microsoft.VisualStudio.IntegrationTest.Setup (1)
AsyncCompletionTracker.cs (1)
48var listener = _asynchronousOperationListenerProvider.GetListener(FeatureAttribute.CompletionSet);
Microsoft.VisualStudio.LanguageServices (1)
LanguageService\AbstractCreateServicesOnTextViewConnection.cs (1)
57listenerProvider.GetListener(FeatureAttribute.CompletionSet),