Collection of provider items by which search engine will perform search. If not empty, it will be based to the search results page via the Request query string, and will be used instead of default search provider collection as configured on that page.

Namespace: MonoSoftware.MonoX.ModuleGallery
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public List<SearchProviderItem> SearchProviders { get; set; }
Visual Basic
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> 
Public Property SearchProviders As List(Of SearchProviderItem)
	Get
	Set
Visual C++
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
property List<SearchProviderItem^>^ SearchProviders {
	List<SearchProviderItem^>^ get ();
	void set (List<SearchProviderItem^>^ value);
}
F#
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
member SearchProviders : List<SearchProviderItem> with get, set

Property Value

Type: List<(Of <(<'SearchProviderItem>)>)>

See Also