CompletionSet.Completions Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the list of completions that are part of this completion set.
public:
virtual property System::Collections::Generic::IList<Microsoft::VisualStudio::Language::Intellisense::Completion ^> ^ Completions { System::Collections::Generic::IList<Microsoft::VisualStudio::Language::Intellisense::Completion ^> ^ get(); };
public virtual System.Collections.Generic.IList<Microsoft.VisualStudio.Language.Intellisense.Completion> Completions { get; }
member this.Completions : System.Collections.Generic.IList<Microsoft.VisualStudio.Language.Intellisense.Completion>
Public Overridable ReadOnly Property Completions As IList(Of Completion)
Property Value
A list of Completion objects.
Remarks
When overriding this property, if you would like to provide a dynamic collection of completions, take care to implement INotifyCollectionChanged for your collection of completions. The default completion presenter uses INotifyCollectionChanged to listen for changes.