Returns a collection of documents matching the given query.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCReadOnlyCollection<BCDocument> ExecuteQuery(
	BCSearchQuery searchQuery,
	BCCollectionBase<BCPropertyDef> propertyDefs,
	SortKind sortOn,
	BCSearchQuery scope
)
Visual Basic
Public Function ExecuteQuery ( _
	searchQuery As BCSearchQuery, _
	propertyDefs As BCCollectionBase(Of BCPropertyDef), _
	sortOn As SortKind, _
	scope As BCSearchQuery _
) As BCReadOnlyCollection(Of BCDocument)
Visual C++
public:
BCReadOnlyCollection<BCDocument^>^ ExecuteQuery(
	BCSearchQuery^ searchQuery, 
	BCCollectionBase<BCPropertyDef^>^ propertyDefs, 
	SortKind sortOn, 
	BCSearchQuery^ scope
)

Parameters

searchQuery
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCSearchQuery
The search query to be executed.
propertyDefs
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCCollectionBase<(Of <(<'BCPropertyDef>)>)>
The collection of property definitions that describe the properties that are returned. If nullNothingnullptra null reference (Nothing in Visual Basic) then default properties will be returned.
sortOn
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..SortKind
The sort order of documents in the result collection.
scope
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCSearchQuery
The scope of the search. Can be nullNothingnullptra null reference (Nothing in Visual Basic).

Return Value

The collection of documents matching the given query.

See Also