NOTE: This method is now obsolete.

A pageSize parameter has been added.


Creates a FilterElement object and adds properties identified by type to be included during an object retrieval or object refresh.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub AddIncludeType( _ 
   ByVal maxRecursion As Integer,  _ 
   ByVal maxSize As Nullable(Of Long),  _ 
   ByVal levelDependents As Nullable(Of Boolean),  _ 
   ByVal value_Renamed As FilteredPropertyType _ 
)
C#
public virtual void AddIncludeType(
   int maxRecursion,
   Nullable<long> maxSize,
   Nullable<bool> levelDependents,
   FilteredPropertyType value_Renamed
)
C++
public:
 virtual void AddIncludeType(
   int maxRecursion,
   Nullable<long> maxSize,
   Nullable<bool> levelDependents,
   FilteredPropertyType value_Renamed
)
J#
public virtual void AddIncludeType(
   int maxRecursion,
   Nullable<long> maxSize,
   Nullable<bool> levelDependents,
   FilteredPropertyType value_Renamed
)
JScript
public virtual  function AddIncludeType(
   maxRecursion : int,
   maxSize : Nullable<long>,
   levelDependents : Nullable<bool>,
   value_Renamed : FilteredPropertyType
)

Parameters

maxRecursion
An int that specifies the maximum allowable recursion depth for property retrieval. This value overrides the global value set by this PropertyFilter object.
maxSize
A Long that specifies the maximum size of content data that can be retrieved. This value overrides the global value set by this PropertyFilter object.
levelDependents
A Boolean value of True if the recursion level for a dependent object is the same as that of the independent object to which it belongs; False if one level deeper. This value overrides the global value set by this PropertyFilter object.
value_Renamed
A FilteredPropertyType constant specifying the type of the properties to include.

See Also