Returns a value indicating whether or not the state of this object is consistent with its state in the repository.
Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)
When one or more of the object's properties are "dirty" (have been marked as changed since the last time they were saved),
returns
. You can then do one of the following:
- Save changes to the persistent store. (You can either call the
method or add the object to anSave UpdatingBatch then call
, which effectively callsUpdateBatch
on eachSave
in the batch.)IndependentlyPersistableObject - Call the object's
method to cancel the changes and restore the object's state to that of the persistent store.Refresh - Remove dirty properties by calling
RemoveFromCache .
Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Function IsCurrent() As Nullable(Of Boolean) |
C# |
---|
Nullable<bool> IsCurrent() |
C++ |
---|
Nullable<bool> IsCurrent() abstract |
J# |
---|
Nullable<bool> IsCurrent() |
JScript |
---|
function IsCurrent() : Nullable<bool> |
Return Value
A
expression representing the object state. Returns
if the object's properties have not been changed; otherwise, returns
(the object has dirty properties).