CompletionSet.Filter Method

Definition

Overloads

Filter()

Filters the set of completions to those that match the applicability text of the completion set and determines the best match.

Filter(CompletionMatchType, Boolean)

Filters the set of completions to those that match the applicability text of the completion set and determines the best match.

Filter()

Filters the set of completions to those that match the applicability text of the completion set and determines the best match.

public:
 virtual void Filter();
public:
 virtual void Filter();
 virtual void Filter();
public virtual void Filter ();
abstract member Filter : unit -> unit
override this.Filter : unit -> unit
Public Overridable Sub Filter ()

Exceptions

Both the completions and the completion builders have been overridden.

Applies to

Filter(CompletionMatchType, Boolean)

Filters the set of completions to those that match the applicability text of the completion set and determines the best match.

protected:
 void Filter(Microsoft::VisualStudio::Language::Intellisense::CompletionMatchType matchType, bool caseSensitive);
protected:
 void Filter(Microsoft::VisualStudio::Language::Intellisense::CompletionMatchType matchType, bool caseSensitive);
void Filter(Microsoft::VisualStudio::Language::Intellisense::CompletionMatchType matchType, bool caseSensitive);
protected void Filter (Microsoft.VisualStudio.Language.Intellisense.CompletionMatchType matchType, bool caseSensitive);
member this.Filter : Microsoft.VisualStudio.Language.Intellisense.CompletionMatchType * bool -> unit
Protected Sub Filter (matchType As CompletionMatchType, caseSensitive As Boolean)

Parameters

caseSensitive
Boolean

true if the match is case-sensitive, otherwise false.

Exceptions

Both the completions and the completion builders have been overridden.

Applies to