Executes a search query that can find documents in any work area.

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 BCMultiContextQueryResult ExecuteMultiContextQuery(
	BCSearchQuery searchQuery,
	BCCollectionBase<BCPropertyDef> propertyDefs,
	SortKind sortOn,
	string waNameFilter,
	OperatorKind waNameFilterOperator
)
Visual Basic
Public Function ExecuteMultiContextQuery ( _
	searchQuery As BCSearchQuery, _
	propertyDefs As BCCollectionBase(Of BCPropertyDef), _
	sortOn As SortKind, _
	waNameFilter As String, _
	waNameFilterOperator As OperatorKind _
) As BCMultiContextQueryResult
Visual C++
public:
BCMultiContextQueryResult^ ExecuteMultiContextQuery(
	BCSearchQuery^ searchQuery, 
	BCCollectionBase<BCPropertyDef^>^ propertyDefs, 
	SortKind sortOn, 
	String^ waNameFilter, 
	OperatorKind waNameFilterOperator
)

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 the default properties will be returned.
sortOn
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..SortKind
The sort order of documents in the result collection.
waNameFilter
Type: System..::..String
The value of the work area name search filter. If the value contains wild card characters (? and *) then the waNameFilterOperator parameter is considered as OP_DOSWILDCARD. If nullNothingnullptra null reference (Nothing in Visual Basic) or an empty string, then all work areas are searched.
waNameFilterOperator
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..OperatorKind
The filter operator which is applied to the waNameFilter and name of work areas.

Return Value

The restricted result of the multi-context query with the specified parameters.

Remarks

Work area is searched only when its display name matches the filter specification.

The search is executed in work lists.

The multi-context query can not be executed in History mode.

See Also