CompletionSet.Completions Property

Definition

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.

Applies to