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)

Syntax

Visual Basic (Declaration)
Public Overridable Function GetBatchItemHandles( _ 
   ByVal object_Renamed As IIndependentObject _ 
) As IList
C#
public virtual IList GetBatchItemHandles(
   IIndependentObject object_Renamed
)
C++
public:
 virtual IList GetBatchItemHandles(
   IIndependentObject object_Renamed
)
J#
public virtual IList GetBatchItemHandles(
   IIndependentObject object_Renamed
)
JScript
public virtual  function GetBatchItemHandles(
   object_Renamed : IIndependentObject
) : IList

Parameters

object_Renamed
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.

See Also