The maximum number of folders in the folder cache for the object store. Each object store has only one folder cache. The folder cache is incrementally added to as queries are made of the cache to find folders. As requests are made of the folder cache for information, that information is read from the object store. The folder information is then stored in the folder cache and returned to the caller.


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

Syntax

Visual Basic (Declaration)
Property FolderCacheMaxEntries As Nullable(Of Integer)
C#
Nullable<int> FolderCacheMaxEntries { get; set; }
C++
property Nullable<int> FolderCacheMaxEntries abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_FolderCacheMaxEntries();

/** property */
public void set_FolderCacheMaxEntries(Nullable<intvalue);
JScript
public function get FolderCacheMaxEntries() : Nullable<int>

public function set FolderCacheMaxEntries(value : Nullable<int>);

Remarks

See Also