Filter.PerformFiltering Method

Definition

Overloads

PerformFiltering(ICharSequence)

Invoked in a worker thread to filter the data according to the constraint.

PerformFiltering(String)

Invoked in a worker thread to filter the data according to the constraint.

PerformFiltering(ICharSequence)

Invoked in a worker thread to filter the data according to the constraint.

[Android.Runtime.Register("performFiltering", "(Ljava/lang/CharSequence;)Landroid/widget/Filter$FilterResults;", "GetPerformFiltering_Ljava_lang_CharSequence_Handler")]
protected abstract Android.Widget.Filter.FilterResults? PerformFiltering (Java.Lang.ICharSequence? constraint);
[<Android.Runtime.Register("performFiltering", "(Ljava/lang/CharSequence;)Landroid/widget/Filter$FilterResults;", "GetPerformFiltering_Ljava_lang_CharSequence_Handler")>]
abstract member PerformFiltering : Java.Lang.ICharSequence -> Android.Widget.Filter.FilterResults

Parameters

constraint
ICharSequence

the constraint used to filter the data

Returns

the results of the filtering operation

Attributes

Remarks

Java documentation for android.widget.Filter.performFiltering(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

  • <xref:Android.Widget.Filter.InvokeFilter(Java.Lang.ICharSequence%2c+.IFilterListener)>
  • <xref:Android.Widget.Filter.PublishResults(Java.Lang.ICharSequence%2c+.FilterResults)>

Applies to

PerformFiltering(String)

Invoked in a worker thread to filter the data according to the constraint.

protected Android.Widget.Filter.FilterResults? PerformFiltering (string? constraint);
member this.PerformFiltering : string -> Android.Widget.Filter.FilterResults

Parameters

constraint
String

the constraint used to filter the data

Returns

the results of the filtering operation

Remarks

Java documentation for android.widget.Filter.performFiltering(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to