Retrieves the value of a
property by making a roundtrip to the server using an optional property
and page size.
Namespace: FileNet.Api.Property
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public MustOverride Function FetchIndependentObjectSetValue( _ ByVal filter As PropertyFilter, _ ByVal pageSize As Integer _ ) As IIndependentObjectSet |
C# |
---|
public abstract IIndependentObjectSet FetchIndependentObjectSetValue( PropertyFilter filter, int pageSize ) |
C++ |
---|
public: IIndependentObjectSet FetchIndependentObjectSetValue( PropertyFilter filter, int pageSize ) abstract |
J# |
---|
public abstract IIndependentObjectSet FetchIndependentObjectSetValue( PropertyFilter filter, int pageSize ) |
JScript |
---|
public abstract
function FetchIndependentObjectSetValue( filter : PropertyFilter, pageSize : int ) : IIndependentObjectSet |
Parameters
- filter
- A
object that represents information for controlling which property values (and with what level of detail and recursion) to return. IfPropertyFilter
, this method returns values for all non-object properties and returns placeholders for all object-valued properties (null
properties with a state ofPropertyEngineObject
orPropertyState.UNEVALUATED
); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.PropertyState.REFERENCE
- pageSize
- An
specifying the number of elements to fetch from the collection at a time.Integer
Return Value
An
object.