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.

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

ToggleSyntax

Visual Basic (Declaration)
Sub Refresh ( _
	filter As PropertyFilter _
)
C#
void Refresh(
	PropertyFilter filter
)
Visual C++
void Refresh(
	PropertyFilter^ filter
)
JavaScript
function refresh(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. 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.

ToggleSee Also