Retrieves this object from the server and replaces existing information in the property cache with the retrieved information for the properties specified by the filter.

If this object has changed on the server since it was last retrieved, you should call a Refresh method first; otherwise, an error will be thrown.

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

ToggleSyntax

Visual Basic (Declaration)
Sub FetchProperties ( _
	filter As PropertyFilter _
)
C#
void FetchProperties(
	PropertyFilter filter
)
Visual C++
void FetchProperties(
	PropertyFilter^ filter
)
JavaScript
function fetchProperties(filter);

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. This parameter cannot be Null.

ToggleExceptions

ExceptionCondition
ExceptionCode..::.E_INVALID_ARGUMENT Thrown if the filter parameter is Null.
ExceptionCode..::.API_FETCH_MERGE_PROPERTY_ERROR Thrown if the object has been changed on the server since it was last retrieved.

ToggleSee Also