MFSearchBuilderFindEx Method |
Executes an object search in the vault with the current conditions,
wrapping each result as an ObjVerEx object.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic List<ObjVerEx> FindEx(
MFSearchFlags searchFlags = MFSearchFlags.MFSearchFlagDisableRelevancyRanking,
bool sort = false,
int maxResults = 0,
int searchTimeoutInSeconds = 60
)
Public Function FindEx (
Optional searchFlags As MFSearchFlags = MFSearchFlags.MFSearchFlagDisableRelevancyRanking,
Optional sort As Boolean = false,
Optional maxResults As Integer = 0,
Optional searchTimeoutInSeconds As Integer = 60
) As List(Of ObjVerEx)
public:
List<ObjVerEx^>^ FindEx(
MFSearchFlags searchFlags = MFSearchFlags::MFSearchFlagDisableRelevancyRanking,
bool sort = false,
int maxResults = 0,
int searchTimeoutInSeconds = 60
)
Parameters
- searchFlags (Optional)
- Type: MFSearchFlags
Search flags for the search operation. - sort (Optional)
- Type: SystemBoolean
Indicates whether the results should be sorted by the server. - maxResults (Optional)
- Type: SystemInt32
The maximum number of results to return (0 means unlimited) - searchTimeoutInSeconds (Optional)
- Type: SystemInt32
The timeout in seconds for the search operation (0 means infinite).
Return Value
Type:
ListObjVerExThe results of the search, with the found ObjectVersions wrapped as ObjVerEx objects.
See Also