CompletionSet.Filter Method
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.
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
- matchType
- CompletionMatchType
The CompletionMatchType.
- caseSensitive
- Boolean
true
if the match is case-sensitive, otherwise false
.
Exceptions
Both the completions and the completion builders have been overridden.