Provides a set of constants that are used by the IndexingOperation property of a CmIndexRequest object to identify the type of operation of an index request.

Namespace:  FileNet.Api.Constants
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration IndexingOperation
C#
public enum IndexingOperation
Visual C++
public enum class IndexingOperation
JavaScript
FileNet.Api.Constants.IndexingOperation = function();
FileNet.Api.Constants.IndexingOperation.createEnum('FileNet.Api.Constants.IndexingOperation', false);

ToggleMembers

TypeMember nameDescription
DELETE
Indicates that an index entry is to be deleted.
CREATE
Indicates that an index entry is to be created.
SKIP
Indicates that an index request is to be skipped. For this operation, the Content Engine server will not index the CBR-enabled object that is the subject of an index request. The Content Engine server sets the CmIndexingFailureCode property of the index request to MARKED_AS_SKIPPED and sets the IndexationId property of the CBR-enabled object to null. This value is the only user-settable value.
UPDATE
Indicates that an existing index entry is to be replaced with an updated entry. An update index request is generated if the CBR-enabled object is modified and has a non-null IndexationId property value.
NO_OP
For internal use only.

ToggleSee Also