The object that is the subject of the queued operation. For example, this may be the Subscription object that caused a given asynchronous event to be queued.

For the IAsyncUpgradeQueueItem interface, this property is for internal use only.


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

Syntax

Visual Basic (Declaration)
Property QueuedObject As IIndependentObject
C#
IIndependentObject QueuedObject { get; set; }
C++
property IIndependentObject QueuedObject abstract  {
    IIndependentObject get();
    void set(IIndependentObject value);
}
J#
/** property */
public IIndependentObject get_QueuedObject();

/** property */
public void set_QueuedObject(IIndependentObject value);
JScript
public function get QueuedObject() : IIndependentObject

public function set QueuedObject(value : IIndependentObject);

Remarks

See Also