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

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

ToggleSyntax

Visual Basic (Declaration)
Function FetchIndependentObjectSetValue ( _
	filter As PropertyFilter, _
	pageSize As Integer _
) As IIndependentObjectSet
C#
IIndependentObjectSet FetchIndependentObjectSetValue(
	PropertyFilter filter,
	int pageSize
)
Visual C++
IIndependentObjectSet^ FetchIndependentObjectSetValue(
	PropertyFilter^ filter, 
	int pageSize
)
JavaScript
function fetchIndependentObjectSetValue(filter, pageSize);

Parameters

filter
Type: FileNet.Api.Property..::.PropertyFilter
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.
pageSize
Type: System..::.Int32
An Integer specifying the number of elements to fetch from the collection at a time.

Return Value

An IndependentObjectSet object.

ToggleSee Also