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)

Syntax

Visual Basic (Declaration)
Public Overridable Sub SetMaxRecursion( _ 
   ByVal maxRecursion As Nullable(Of Integer) _ 
)
C#
public virtual void SetMaxRecursion(
   Nullable<int> maxRecursion
)
C++
public:
 virtual void SetMaxRecursion(
   Nullable<int> maxRecursion
)
J#
public virtual void SetMaxRecursion(
   Nullable<int> maxRecursion
)
JScript
public virtual  function SetMaxRecursion(
   maxRecursion : Nullable<int>
)

Parameters

maxRecursion
An Integer that specifies the maximum allowable recursion depth for property retrieval.

See Also