Specifies a DocClassificationStatus constant that indicates the auto-classification status for this document. The ClassificationStatus property is used to provide client applications a means of discovering whether a particular

document is subject to auto-classification, and if so, whether or not the operation was successful. This property can hold one of the following values:

  • CLASSIFICATION_COMPLETE: Indicates that document auto-classification has completed successfully.
  • CLASSIFICATION_FAILED: Indicates that document auto-classification has failed.
  • CLASSIFICATION_PENDING: Indicates that a request for document auto-classification is pending. This value is set automatically by the server when you check in a document and set the Checkin method's autoClassify parameter to AUTO_CLASSIFY.
  • NOT_CLASSIFIED: Indicates that document auto-classification has not been requested. This value is set automatically by the server when you check in a document and set the Checkin method's autoClassify parameter to DO_NOT_AUTO_CLASSIFY.

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

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property ClassificationStatus As DocClassificationStatus
C#
DocClassificationStatus ClassificationStatus { get; }
Visual C++
property DocClassificationStatus ClassificationStatus {
	DocClassificationStatus get ();
}
JavaScript
function get_classificationStatus();

ToggleRemarks

ToggleSee Also