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

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 ( _
	propertyNames As String() _
)
C#
void FetchProperties(
	string[] propertyNames
)
Visual C++
void FetchProperties(
	array<String^>^ propertyNames
)
JavaScript
function fetchProperties(propertyNames);

Parameters

propertyNames
Type: array< System..::.String >[]()[]
A String array of property names identifying the properties to return with the retrieved object.

ToggleExceptions

ExceptionCondition
ExceptionCode..::.E_INVALID_ARGUMENT Thrown if the propertyNames parameter is Null or is an empty array.
ExceptionCode..::.API_FETCH_MERGE_PROPERTY_ERROR Thrown if the object has been changed on the server since it was last retrieved.

ToggleSee Also