Adds documents to the briefcase.

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

Syntax

C#
public Array AddDocuments(
	IEnumerable<string> documentIDs,
	BriefcaseAddFlags flags,
	string targetSiteID
)
Visual Basic
Public Function AddDocuments ( _
	documentIDs As IEnumerable(Of String), _
	flags As BriefcaseAddFlags, _
	targetSiteID As String _
) As Array
Visual C++
public:
Array^ AddDocuments(
	IEnumerable<String^>^ documentIDs, 
	BriefcaseAddFlags flags, 
	String^ targetSiteID
)

Parameters

documentIDs
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of document ID property values to add.
flags
Type: BlueCieloECM.InnoCielo.Meridian.Client..::..BriefcaseAddFlags
A bitmask that is a combination of bit flags from BriefcaseAddFlags.
targetSiteID
Type: System..::..String
The value that identifies a target site to which the briefcase will belong.

Return Value

The 2D array of result values for the operation for each document. Each row containing 4 columns related to documentIDs.
  • 0: The ID property value of the document.
  • 1: Result of the operation (HRESULT): 0 - succeeded.
  • 2: If the operation succeeded, the GlobalID property value or path of the target document.
  • 3: If the operation succeeded, an extra flags mask.

See Also