ICompletionSource::AugmentCompletionSession Method (ICompletionSession^, IList<CompletionSet^>^)
Visual Studio 2015
Determines which CompletionSets should be part of the specified ICompletionSession.
Assembly: Microsoft.VisualStudio.Language.Intellisense (in Microsoft.VisualStudio.Language.Intellisense.dll)
void AugmentCompletionSession(
ICompletionSession^ session,
IList<CompletionSet^>^ completionSets
)
Parameters
- session
-
Type:
Microsoft.VisualStudio.Language.Intellisense::ICompletionSession^
The session for which completions are to be computed.
- completionSets
-
Type:
System.Collections.Generic::IList<CompletionSet^>^
The set of CompletionSet objects to be added to the session.
Each applicable AugmentCompletionSession instance will be called in-order to (re)calculate a ICompletionSession. CompletionSets can be added to the session by adding them to the completionSets collection passed-in as a parameter. In addition, by removing items from the collection, a source may filter CompletionSets provided by ICompletionSources earlier in the calculation chain.
Show: