Executes a report with the specified ID property value.

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> ExecuteReport(
	string objectID,
	IEnumerable<string> scopeDocumentIDs,
	bool recursive
)
Visual Basic
Public Function ExecuteReport ( _
	objectID As String, _
	scopeDocumentIDs As IEnumerable(Of String), _
	recursive As Boolean _
) As BCReadOnlyCollection(Of BCDocument)
Visual C++
public:
BCReadOnlyCollection<BCDocument^>^ ExecuteReport(
	String^ objectID, 
	IEnumerable<String^>^ scopeDocumentIDs, 
	bool recursive
)

Parameters

objectID
Type: System..::..String
The ID property value of the report to execute.
scopeDocumentIDs
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of document ID property values that represent the scope of the report. Can be nullNothingnullptra null reference (Nothing in Visual Basic). Folders can be taken into account: if the ID property value from the collection is the ID property value of a folder, all documents from it will be added into the resulting query, recursively, if needed.
recursive
Type: System..::..Boolean
A value indicating whether recursive processing is needed.

Return Value

The collection of documents that belong to the report.

See Also