Defines collection functionality common only to sets. A set is a collection of independent objects, the elements of which are unordered and unique. A set may not be directly updated. You can enumerate a set one page at a time (instead of one object or one row at a time).


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

Syntax

Visual Basic (Declaration)
Public Interface IEngineSet
    Implements IEngineCollection, IEnumerable, ICloneable
C#
public interface IEngineSet : IEngineCollection, IEnumerable, ICloneable
C++
interface class IEngineSet : IEngineCollection, IEnumerable, ICloneable
J#
public interface IEngineSet implements IEngineCollection, IEnumerable, ICloneable
JScript
public interface IEngineSet extends IEngineCollection, IEnumerable, ICloneable

See Also