Specifies whether the lifecycle state of this document is in an exception state (true) or not (false). As long as a document is in an exception state, its lifecycle state can neither be promoted nor demoted. To clear a document from an exception state, you must call its ChangeState method and set the LifecycleChangeFlags parameter to CLEAR_EXCEPTION.


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

Syntax

Visual Basic (Declaration)
ReadOnly Property IsInExceptionState As Nullable(Of Boolean)
C#
Nullable<bool> IsInExceptionState { get; }
C++
property Nullable<bool> IsInExceptionState abstract  {
    Nullable<bool> get();
}
J#
/** property */
public Nullable<bool> get_IsInExceptionState();
JScript
public function get IsInExceptionState() : Nullable<bool>

Remarks

See Also