BindingList<T>::SupportsSearchingCore Property

 

Gets a value indicating whether the list supports searching.

Namespace:   System.ComponentModel
Assembly:  System (in System.dll)

protected:
property bool SupportsSearchingCore {
	virtual bool get();
}

Property Value

Type: System::Boolean

true if the list supports searching; otherwise, false. The default is false.

The BindingList<T> class does not provide a base implementation of searching, so SupportsSearchingCore always returns false by default. For more information about implementing searching, see the IBindingList::Find method.

The following code example demonstrates how to use the SupportsSearchingCore member.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: