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)

ToggleSyntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class Unlock _
	Inherits PendingAction
C#
[SerializableAttribute]
public class Unlock : PendingAction
Visual C++
[SerializableAttribute]
public ref class Unlock : public PendingAction
JavaScript
FileNet.Api.Action.Unlock = function();

Type.createClass(
	'FileNet.Api.Action.Unlock',
	FileNet.Api.Action.PendingAction);

ToggleInheritance Hierarchy

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

ToggleSee Also