Sets the maximum recursion depth for the property filter to use when retrieving property relationships. The value set is the global value for this PropertyFilter object. If the filter element of a property has a value for maxRecursion, the server uses the filter element's value instead of this global value. If neither the global value nor the filter element value is specified, the default is 0.

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

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Sub SetMaxRecursion ( _
	maxRecursion As Integer _
)
C#
public virtual void SetMaxRecursion(
	int maxRecursion
)
Visual C++
public:
virtual void SetMaxRecursion(
	int maxRecursion
)
JavaScript
function setMaxRecursion(maxRecursion);

Parameters

maxRecursion
Type: System..::.Int32
An int that specifies the maximum allowable recursion depth for property retrieval.

ToggleSee Also