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 Nullable(Of Integer) _
)
C#
public virtual void SetMaxRecursion(
	Nullable<int> maxRecursion
)
Visual C++
public:
virtual void SetMaxRecursion(
	Nullable<int> maxRecursion
)
JavaScript
function setMaxRecursion(maxRecursion);

Parameters

maxRecursion
Type: System..::.Nullable<(Of <(Int32>)>)
An Integer that specifies the maximum allowable recursion depth for property retrieval.

ToggleSee Also