Represents an “unlock” pending action. Calling a method that unlocks an object automatically creates an instance of Unlock, which is then added to the underlying object’s PendingActions collection. Only the owner of the lock can remove it.


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

Syntax

Visual Basic (Declaration)
<SerializableAttribute>
Public Class Unlock
    Inherits PendingAction
C#
[SerializableAttribute]
public class Unlock : PendingAction
C++
[SerializableAttribute]
ref class Unlock : PendingAction
J#
/** @attribute SerializableAttribute() */
public class Unlock extends PendingAction
JScript
public 
   SerializableAttribute
class Unlock extends PendingAction

Inheritance Hierarchy

System.Object
   FileNet.Api.Action.PendingAction
      FileNet.Api.Action.Unlock

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also