Retrieves the value of a PropertyIndependentObjectSet property by making a roundtrip to the server using an optional property filter.


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

Syntax

Visual Basic (Declaration)
Public MustOverride Function FetchIndependentObjectSetValue( _ 
   ByVal filter As PropertyFilter _ 
) As IIndependentObjectSet
C#
public abstract IIndependentObjectSet FetchIndependentObjectSetValue(
   PropertyFilter filter
)
C++
public:
 IIndependentObjectSet FetchIndependentObjectSetValue(
   PropertyFilter filter
) abstract 
J#
public abstract IIndependentObjectSet FetchIndependentObjectSetValue(
   PropertyFilter filter
)
JScript
public abstract  function FetchIndependentObjectSetValue(
   filter : PropertyFilter
) : IIndependentObjectSet

Parameters

filter
A PropertyFilter object that represents information for controlling which property values (and with what level of detail and recursion) to return. If null, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObject properties with a state of PropertyState.UNEVALUATED or PropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.

Return Value

An IndependentObjectSet object.

See Also