Sets the maximum size of content data that the property filter is allowed to retrieve.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub SetMaxSize( _ 
   ByVal maxSize As Nullable(Of Long) _ 
)
C#
public virtual void SetMaxSize(
   Nullable<long> maxSize
)
C++
public:
 virtual void SetMaxSize(
   Nullable<long> maxSize
)
J#
public virtual void SetMaxSize(
   Nullable<long> maxSize
)
JScript
public virtual  function SetMaxSize(
   maxSize : Nullable<long>
)

Parameters

maxSize
A Long that specifies the maximum size (in bytes) of content data that can be retrieved. If this size is exceeded, no content data is retrieved. The value set is the global value for this PropertyFilter object. If the filter element of a property has a value for maxSize, 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, by default there is no limit on the amount of content data that can be retrieved.

See Also