The event action object that defines the actions to be taken when a event occurs that is subscribed to by a Subscription-based object (ClassSubscription, ClassWorkflowSubscription, InstanceSubscription, InstanceWorkflowSubscription). You set the property with an EventAction object, which must already exist in the object store. You then specify the property when you create the Subscription-based object.

Once this property is set, the Content Engine adds the Subscription-based object to the EventAction object's Subscriptions collection property.


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

Syntax

Visual Basic (Declaration)
Property EventAction As IEventAction
C#
IEventAction EventAction { get; set; }
C++
property IEventAction EventAction abstract  {
    IEventAction get();
    void set(IEventAction value);
}
J#
/** property */
public IEventAction get_EventAction();

/** property */
public void set_EventAction(IEventAction value);
JScript
public function get EventAction() : IEventAction

public function set EventAction(value : IEventAction);

Remarks

See Also