Locates a PropertyDependentObjectList property by name in this Properties collection and returns the value it holds. If the property holds a reference object (Property.PropertyState = REFERENCE) or or is unevaluated (Property.PropertyState = UNEVALUATED), a round-trip is made to the server to fetch its value.


Namespace: FileNet.Api.Property
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Function GetDependentObjectListValue( _ 
   ByVal propertyName As String _ 
) As IDependentObjectList
C#
IDependentObjectList GetDependentObjectListValue(
   string propertyName
)
C++
IDependentObjectList GetDependentObjectListValue(
   String propertyName
) abstract 
J#
IDependentObjectList GetDependentObjectListValue(
   string propertyName
)
JScript
function GetDependentObjectListValue(
   propertyName : String
) : IDependentObjectList

Parameters

propertyName
A String specifying a property name.

Return Value

A DependentEngineObjectList specifying the value of the property. If the property's value cannot be retrieved, an EngineRuntimeException object will be returned.

Exceptions

Exception TypeCondition
EngineRuntimeException Thrown if the property cannot be found in the collection, is not a PropertyDependentObjectList instance, or a retrieval error has occurred (Property.PropertyState = RETRIEVAL_ERROR).

See Also