The number of seconds beyond the last modified date that the server will retain a lock.
This property's value is used to calculate a lock's expiration time. The property's value is populated as a result
of a successful call to the LockObject method; however, the value can be updated by a call to UpdateLock.
The property value is the number of seconds beyond the value in the object's DateLastModified property that
the user of the lock can hold the lock on the object. The result of the calculation is measured against the current
system time. The lock is considered expired when the value of the object's DateLastModified property
plus the value of the LockTimeout property is less than the current system time. (All millisecond
components are dropped from the calculation.) This property is set to null if the Unlock
method is called; if the lock expires naturally, then the value remains unchanged.
Namespace:
FileNet.Api.Core
Assembly:
FileNet.Api (in FileNet.Api.dll)
Visual Basic (Declaration) |
---|
ReadOnly Property LockTimeout As Nullable(Of Integer) |
C# |
---|
Nullable<int> LockTimeout { get; } |
Visual C++ |
---|
property Nullable<int> LockTimeout {
Nullable<int> get ();
} |
JavaScript |
---|
function get_lockTimeout();
|