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)

ToggleSyntax

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

Parameters

maxSize
Type: System..::.Nullable<(Of <(Int64>)>)
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.

ToggleSee Also