Returns a list of the BatchItemHandle instances in this batch that reference the specified object, or, if the object parameter is Null, the list of all BatchItemHandle instances in this batch.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Function GetBatchItemHandles ( _
	object_Renamed As IIndependentObject _
) As IList
C#
public virtual IList GetBatchItemHandles(
	IIndependentObject object_Renamed
)
Visual C++
public:
virtual IList^ GetBatchItemHandles(
	IIndependentObject^ object_Renamed
)
JavaScript
function getBatchItemHandles(object_Renamed);

Parameters

object_Renamed
Type: FileNet.Api.Core..::.IIndependentObject
An IndependentObject instance for the object that is expected to be referenced in this batch, or Null to return the list of all BatchItemHandle instances.

Return Value

A List of any BatchItemHandle instances referencing the specified object. If the specified object is not in the batch, an empty list is returned. If the object parameter is Null, the list of all BatchItemHandle instances is returned.

ToggleSee Also