|
ExtensionPlugInList Class |
Top Previous Next |
|
For a list of all members of this type, see ExtensionPlugInList Members.
Description
Represents the list of registered plug-in extensions.
Thread Safety
This class is STA based and therefore safe for multithreaded access as long as the creating process continues to process its message loop.
Remarks
The extension information is initially loaded from the plugin_cfg sub-folder and modified with any configuration information stored in config.xml.
The contents of the list can be accessed through either a numeric index, using the Item property, or through the Find method.
This class is not created directly but referenced from an instance of SearchConfiguration.
Example
[Visual Basic]
engineSearch = New SearchEngineClass
engineSearch.SearchCriteria.FileName = "*.pdf" engineSearch.SearchCriteria.ContainingText = "search" engineSearch.SearchCriteria.LookIn = "c:\search folder"
' Switch on the pdf converter to extract the text from PDF files.
engineSearch.SearchConfiguration.ExtensionPlugInList.Find("http://www.mythicsoft.com/pdfconverter").Active = True
Dim listResult As SearchResultItemList = engineSearch.Start( False )
|